]>
Commit | Line | Data |
---|---|---|
98216d40 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: winundef.h | |
3 | // Purpose: undefine the common symbols #define'd by <windows.h> | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 16.05.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) wxWindows team | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_WINUNDEF_H_ | |
13 | #define _WX_WINUNDEF_H_ | |
14 | ||
15 | // windows.h #defines the following identifiers which are also used in wxWin | |
16 | #ifdef GetCharWidth | |
17 | #undef GetCharWidth | |
18 | #endif | |
19 | ||
20 | #ifdef FindWindow | |
21 | #undef FindWindow | |
22 | #endif | |
23 | ||
24 | #ifdef GetClassName | |
25 | #undef GetClassName | |
26 | #endif | |
27 | ||
28 | #ifdef GetClassInfo | |
29 | #undef GetClassInfo | |
30 | #endif | |
31 | ||
32 | #ifdef LoadAccelerators | |
33 | #undef LoadAccelerators | |
34 | #endif | |
35 | ||
36 | #ifdef GetWindowProc | |
37 | #undef GetWindowProc | |
38 | #endif | |
39 | ||
40 | #ifdef DrawText | |
41 | #undef DrawText | |
42 | #endif | |
43 | ||
44 | #ifdef StartDoc | |
45 | #undef StartDoc | |
46 | #endif | |
47 | ||
48 | #ifdef GetFirstChild | |
49 | #undef GetFirstChild | |
50 | #endif | |
51 | ||
52 | #ifdef GetNextChild | |
53 | #undef GetNextChild | |
54 | #endif | |
55 | ||
56 | #ifdef GetNextSibling | |
57 | #undef GetNextSibling | |
58 | #endif | |
59 | ||
60 | #ifdef GetObject | |
61 | #undef GetObject | |
62 | #endif | |
63 | ||
64 | #endif // _WX_WINUNDEF_H_ |