mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
420b109b72
svn path=/trunk/; revision=17325
25 lines
377 B
C
25 lines
377 B
C
#ifndef __LIBSKY_H
|
|
#define __LIBSKY_H
|
|
|
|
void __cdecl DbgPrint(char *, ...);
|
|
|
|
#if defined(DBG)
|
|
#undef DBG
|
|
#endif
|
|
|
|
#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 */
|