mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 19:26:05 +00: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
|
|
|