Files
reactos/reactos/include/win32k/debug.h
T
Rex Jolliff a7e6e9c1f8 more win32k code
svn path=/trunk/; revision=790
1999-11-21 18:39:11 +00:00

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