mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 12:32:47 +00:00
12 lines
200 B
C
12 lines
200 B
C
|
#ifndef __LIBSKY_H
|
||
|
#define __LIBSKY_H
|
||
|
|
||
|
ULONG DbgPrint(PCH Format,...);
|
||
|
|
||
|
#define DBG DbgPrint
|
||
|
#define STUB DbgPrint("Stub in %s:%i: ", __FILE__, __LINE__); DbgPrint
|
||
|
|
||
|
#endif /* __LIBSKY_H */
|
||
|
|
||
|
/* EOF */
|