]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: wrapwin.h | |
3 | // Purpose: Wrapper around <windows.h>, to be included instead of it | |
4 | // Author: Vaclav Slavik | |
5 | // Created: 2003/07/22 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2003 Vaclav Slavik | |
8 | // Licence: wxWindows licence | |
9 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef _WX_WRAPWIN_H_ | |
12 | #define _WX_WRAPWIN_H_ | |
13 | ||
14 | #include "wx/platform.h" | |
15 | ||
16 | #ifndef STRICT | |
17 | #define STRICT 1 | |
18 | #endif | |
19 | ||
20 | #include <windows.h> | |
21 | #include "wx/msw/winundef.h" | |
22 | ||
23 | #endif // _WX_WRAPWIN_H_ | |
24 |