mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 21:29:18 +08:00
13 lines
209 B
C
13 lines
209 B
C
|
|
#ifndef H_WIN32K_DEBUG
|
|
#define H_WIN32K_DEBUG
|
|
|
|
#ifdef CHECKED_BUILD
|
|
#define FIXME(S) DbgPrint ("win32k: FIXME at: File:%s line:%d reason:%s", __FILE__, __LINE__, S)
|
|
#else
|
|
#define FIXME(S)
|
|
#endif
|
|
|
|
#endif
|
|
|