Fixed compilation error.
[reactos.git] / reactos / include / win32k / debug.h
1
2 #ifndef H_WIN32K_DEBUG
3 #define H_WIN32K_DEBUG
4
5 #ifdef CHECKED_BUILD
6 #define FIXME(S) DbgPrint ("win32k: FIXME at: File:%s line:%d reason:%s", __FILE__, __LINE__, S)
7 #else
8 #define FIXME(S)
9 #endif
10
11 #endif
12