mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
ddb3d908c9
svn path=/branches/shell-experiments/; revision=62286
25 lines
443 B
C
25 lines
443 B
C
#ifndef _MSPAINT_H
|
|
#define _MSPAINT_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winuser.h>
|
|
#include <wingdi.h>
|
|
#include <windowsx.h>
|
|
#include <commdlg.h>
|
|
#include <commctrl.h>
|
|
#include <tchar.h>
|
|
#include <stdlib.h>
|
|
#include <shellapi.h>
|
|
|
|
#include "definitions.h"
|
|
#include "drawing.h"
|
|
#include "dib.h"
|
|
#include "globalvar.h"
|
|
#include "history.h"
|
|
#include "mouse.h"
|
|
#include "selection.h"
|
|
|
|
#endif /* _MSPAINT_H */
|