mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
955048e50a
- Check the denominator for zero for both zoomed width and height. - Do not allow to move zoom slider above possible position. - Move commonly used `zoomTo` function into new header file. CORE-14539
48 lines
932 B
C
48 lines
932 B
C
#ifndef _MSPAINT_H
|
|
#define _MSPAINT_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winuser.h>
|
|
#include <wingdi.h>
|
|
#include <tchar.h>
|
|
#include <atlbase.h>
|
|
#include <atlcom.h>
|
|
#include <atlimage.h>
|
|
#include <atlpath.h>
|
|
#include <atlstr.h>
|
|
#include <atlwin.h>
|
|
#include <windowsx.h>
|
|
#include <commdlg.h>
|
|
#include <commctrl.h>
|
|
#include <stdlib.h>
|
|
#include <shellapi.h>
|
|
#include <htmlhelp.h>
|
|
|
|
#include "common.h"
|
|
#include "definitions.h"
|
|
#include "drawing.h"
|
|
#include "dib.h"
|
|
#include "fullscreen.h"
|
|
#include "globalvar.h"
|
|
#include "history.h"
|
|
#include "imgarea.h"
|
|
#include "miniature.h"
|
|
#include "mouse.h"
|
|
#include "palette.h"
|
|
#include "palettemodel.h"
|
|
#include "registry.h"
|
|
#include "scrollbox.h"
|
|
#include "selection.h"
|
|
#include "selectionmodel.h"
|
|
#include "sizebox.h"
|
|
#include "textedit.h"
|
|
#include "toolbox.h"
|
|
#include "toolsettings.h"
|
|
#include "toolsmodel.h"
|
|
#include "winproc.h"
|
|
|
|
#endif /* _MSPAINT_H */
|