2015-05-08 16:02:36 +00:00
|
|
|
#ifndef _MSPAINT_H
|
|
|
|
#define _MSPAINT_H
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <wingdi.h>
|
2015-07-07 10:42:49 +00:00
|
|
|
#include <tchar.h>
|
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlcom.h>
|
2016-09-26 19:53:42 +00:00
|
|
|
#include <atlimage.h>
|
|
|
|
#include <atlpath.h>
|
|
|
|
#include <atlstr.h>
|
2015-07-07 10:42:49 +00:00
|
|
|
#include <atlwin.h>
|
2015-05-08 16:02:36 +00:00
|
|
|
#include <windowsx.h>
|
|
|
|
#include <commdlg.h>
|
|
|
|
#include <commctrl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
#include <htmlhelp.h>
|
|
|
|
|
2018-04-14 12:42:34 +00:00
|
|
|
#include "common.h"
|
2015-05-08 16:02:36 +00:00
|
|
|
#include "definitions.h"
|
|
|
|
#include "drawing.h"
|
|
|
|
#include "dib.h"
|
2015-08-17 12:03:39 +00:00
|
|
|
#include "fullscreen.h"
|
2015-05-08 16:02:36 +00:00
|
|
|
#include "globalvar.h"
|
|
|
|
#include "history.h"
|
2015-07-07 11:02:30 +00:00
|
|
|
#include "imgarea.h"
|
|
|
|
#include "miniature.h"
|
2015-05-08 16:02:36 +00:00
|
|
|
#include "mouse.h"
|
2015-07-07 10:42:49 +00:00
|
|
|
#include "palette.h"
|
2015-07-07 11:15:24 +00:00
|
|
|
#include "palettemodel.h"
|
2015-08-16 19:52:37 +00:00
|
|
|
#include "registry.h"
|
2015-07-07 10:42:49 +00:00
|
|
|
#include "scrollbox.h"
|
2015-05-08 16:02:36 +00:00
|
|
|
#include "selection.h"
|
2015-07-09 09:48:01 +00:00
|
|
|
#include "selectionmodel.h"
|
2015-07-07 10:42:49 +00:00
|
|
|
#include "sizebox.h"
|
|
|
|
#include "textedit.h"
|
2015-07-07 11:44:50 +00:00
|
|
|
#include "toolbox.h"
|
2015-07-07 10:42:49 +00:00
|
|
|
#include "toolsettings.h"
|
2015-07-07 11:15:24 +00:00
|
|
|
#include "toolsmodel.h"
|
2015-07-07 10:42:49 +00:00
|
|
|
#include "winproc.h"
|
2015-05-08 16:02:36 +00:00
|
|
|
|
|
|
|
#endif /* _MSPAINT_H */
|