mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
47 lines
912 B
C
47 lines
912 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 "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 */
|