mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
13 lines
355 B
C
13 lines
355 B
C
#include <stdarg.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winfax.h>
|
|
|
|
/* INTERNAL *******************************************************************/
|
|
|
|
ULONG DbgPrint(PCH Format,...);
|
|
#define UNIMPLEMENTED \
|
|
DbgPrint("%s:%i: %s() UNIMPLEMENTED!\n", __FILE__, __LINE__, __FUNCTION__); \
|
|
SetLastError( ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
/* EOF */
|