| 23 | static HCURSOR g_curZoomIn, g_curZoomOut; |
| 24 | |
| 25 | void KillImageBitmaps() |
| 26 | { |
| 27 | if (g_hBitmapFull) delete g_hBitmapFull; |
| 28 | if (g_hBitmapPreview) delete g_hBitmapPreview; |
| 29 | g_hBitmapFull = g_hBitmapPreview = NULL; |
| 30 | } |
| 31 | |
| 32 | static bool g_bChildZoomedIn = false; |
| 33 |
no outgoing calls
no test coverage detected