mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 06:33:08 +00:00
420b109b72
svn path=/trunk/; revision=17325
15 lines
234 B
C
15 lines
234 B
C
#ifndef __LIBSKY_H
|
|
#define __LIBSKY_H
|
|
|
|
ULONG DbgPrint(PCH Format,...);
|
|
|
|
#if defined(DBG)
|
|
#undef DBG
|
|
#endif
|
|
|
|
#define DBG DPRINT
|
|
#define STUB DbgPrint("Stub in %s:%i: ", __FILE__, __LINE__); DbgPrint
|
|
|
|
#endif /* __LIBSKY_H */
|
|
|
|
/* EOF */
|