reactos/rosky/lib/libsky/libsky.h
Emanuele Aliberti 420b109b72 Make the 'rosky' optional module compile.
svn path=/trunk/; revision=17325
2005-08-12 13:46:36 +00:00

26 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 */