mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
f5dfe7db02
svn path=/trunk/; revision=16339
21 lines
341 B
C
21 lines
341 B
C
#ifndef __LIBSKY_H
|
|
#define __LIBSKY_H
|
|
|
|
void __cdecl DbgPrint(char *, ...);
|
|
|
|
#ifdef DEBUG
|
|
# ifdef NDEBUG
|
|
# define DBG(...)
|
|
# else
|
|
# define DBG DbgPrint
|
|
# endif
|
|
# define DBG1 DbgPrint
|
|
#else
|
|
# define DBG(...)
|
|
# define DBG1(...)
|
|
#endif
|
|
#define STUB DbgPrint("Stub in %s:%i: ", __FILE__, __LINE__); DbgPrint
|
|
|
|
#endif /* __LIBSKY_H */
|
|
|
|
/* EOF */
|