Release 941017
[wine/gsoc-2012-control.git] / include / stddebug.h
blobcda6a2ee816b7d58c1fee7ae396efc8369e2e550
1 /* If you define this you can enable or disable specific debugging- */
2 /* messages at run-time by supplying the "-debugmsg" option to Wine */
3 #define DEBUG_RUNTIME /* */
6 /* Define this if you want to enable all debugging-messages, except */
7 /* the ones explicitly disabled in a specific *.c-file. */
8 /* #define DEBUG_ALL */
10 /* Define this if you want to enable all debugging-messages, even */
11 /* the ones explicitly disabled in specific *.c-files. */
12 /* #define DEBUG_ALL_EXT */
14 /* Define this if you want to disable all debugging-messages, except */
15 /* the ones explicitly enabled in a specifiy *.c-file. */
16 /* #define DEBUG_NONE */
18 /* Define this if you want to disable all debugging-messages, even */
19 /* the ones explicitly enabled in specific *.c-files. */
20 /* #define DEBUG_NONE_EXT */
23 /* You can enable or disable specific debugging-messages here. */
24 /* However, this can be overridden in the individual *.c-files */
25 /* between #include <stddebug.h> and #include <debug.h> */
28 /* #define DEBUG_EDIT */
29 /* #define DEBUG_MENU */
30 /* #define DEBUG_MENUCALC */
31 /* #define DEBUG_SCROLL */
32 /* #define DEBUG_COMBO */
33 /* #define DEBUG_LISTBOX */
34 /* #define DEBUG_TASK */
35 /* #define DEBUG_SELECTORS */
36 /* #define DEBUG_RESOURCE */
37 /* #define DEBUG_ACCEL */
38 /* #define DEBUG_FIXUP */
39 /* #define DEBUG_MODULE */
40 /* #define DEBUG_LDT */
41 /* #define DEBUG_HEAP */
42 /* #define DEBUG_MCIWAVE */
43 /* #define DEBUG_MCIWAVE */
44 /* #define DEBUG_INT */
45 /* #define DEBUG_METAFILE */
46 /* #define DEBUG_GDI */
47 /* #define DEBUG_BITMAP */
48 /* #define DEBUG_FONT */
49 /* #define DEBUG_PALETTE */
50 /* #define DEBUG_ICON */
51 /* #define DEBUG_REGION */
52 /* #define DEBUG_TEXT */
53 /* #define DEBUG_CLIPPING */
54 /* #define DEBUG_CARET */
55 /* #define DEBUG_CLASS */
56 /* #define DEBUG_DC */
57 /* #define DEBUG_DIALOG */
58 /* #define DEBUG_MESSAGE */
59 /* #define DEBUG_EVENT */
60 /* #define DEBUG_KEY */
61 /* #define DEBUG_GRAPHICS */
62 /* #define DEBUG_MDI */
63 /* #define DEBUG_MSG */
64 /* #define DEBUG_NONCLIENT */
65 /* #define DEBUG_SYSCOLOR */
66 /* #define DEBUG_TIMER */
67 /* #define DEBUG_UTILITY */
68 /* #define DEBUG_WIN */
69 /* #define DEBUG_ENUM */
70 /* #define DEBUG_DLL */
73 # /* Do not remove this line or change anything below this line */
75 #ifdef DEBUG_NONE
76 #undef DEBUG_ACCEL
77 #undef DEBUG_BITMAP
78 #undef DEBUG_CARET
79 #undef DEBUG_CDAUDIO
80 #undef DEBUG_CLASS
81 #undef DEBUG_CLIPBOARD
82 #undef DEBUG_CLIPPING
83 #undef DEBUG_COMBO
84 #undef DEBUG_COMM
85 #undef DEBUG_CURSOR
86 #undef DEBUG_DC
87 #undef DEBUG_DIALOG
88 #undef DEBUG_DLL
89 #undef DEBUG_DOSFS
90 #undef DEBUG_DRIVER
91 #undef DEBUG_EDIT
92 #undef DEBUG_ENUM
93 #undef DEBUG_EVENT
94 #undef DEBUG_EXEC
95 #undef DEBUG_FILE
96 #undef DEBUG_FIXUP
97 #undef DEBUG_FONT
98 #undef DEBUG_GDI
99 #undef DEBUG_GRAPHICS
100 #undef DEBUG_HEAP
101 #undef DEBUG_ICON
102 #undef DEBUG_INT
103 #undef DEBUG_KEY
104 #undef DEBUG_KEYBOARD
105 #undef DEBUG_LDT
106 #undef DEBUG_LISTBOX
107 #undef DEBUG_MCIWAVE
108 #undef DEBUG_MDI
109 #undef DEBUG_MENU
110 #undef DEBUG_MENUCALC
111 #undef DEBUG_MESSAGE
112 #undef DEBUG_METAFILE
113 #undef DEBUG_MODULE
114 #undef DEBUG_MSG
115 #undef DEBUG_NONCLIENT
116 #undef DEBUG_PALETTE
117 #undef DEBUG_REGION
118 #undef DEBUG_RESOURCE
119 #undef DEBUG_SCROLL
120 #undef DEBUG_SYSCOLOR
121 #undef DEBUG_TEXT
122 #undef DEBUG_TIMER
123 #undef DEBUG_UTILITY
124 #undef DEBUG_WIN
125 #endif
128 #ifdef DEBUG_ALL
129 #define DEBUG_ACCEL
130 #define DEBUG_BITMAP
131 #define DEBUG_CARET
132 #define DEBUG_CDAUDIO
133 #define DEBUG_CLASS
134 #define DEBUG_CLIPBOARD
135 #define DEBUG_CLIPPING
136 #define DEBUG_COMBO
137 #define DEBUG_COMM
138 #define DEBUG_CURSOR
139 #define DEBUG_DC
140 #define DEBUG_DIALOG
141 #define DEBUG_DLL
142 #define DEBUG_DOSFS
143 #define DEBUG_DRIVER
144 #define DEBUG_EDIT
145 #define DEBUG_ENUM
146 #define DEBUG_EVENT
147 #define DEBUG_EXEC
148 #define DEBUG_FILE
149 #define DEBUG_FIXUP
150 #define DEBUG_FONT
151 #define DEBUG_GDI
152 #define DEBUG_GRAPHICS
153 #define DEBUG_HEAP
154 #define DEBUG_ICON
155 #define DEBUG_INT
156 #define DEBUG_KEY
157 #define DEBUG_KEYBOARD
158 #define DEBUG_LDT
159 #define DEBUG_LISTBOX
160 #define DEBUG_MCIWAVE
161 #define DEBUG_MDI
162 #define DEBUG_MENU
163 #define DEBUG_MENUCALC
164 #define DEBUG_MESSAGE
165 #define DEBUG_METAFILE
166 #define DEBUG_MODULE
167 #define DEBUG_MSG
168 #define DEBUG_NONCLIENT
169 #define DEBUG_PALETTE
170 #define DEBUG_REGION
171 #define DEBUG_RESOURCE
172 #define DEBUG_SCROLL
173 #define DEBUG_SYSCOLOR
174 #define DEBUG_TEXT
175 #define DEBUG_TIMER
176 #define DEBUG_UTILITY
177 #define DEBUG_WIN
178 #endif