mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
6afbc8f483
svn path=/branches/reactos-yarotows/; revision=45219
12 lines
315 B
C
12 lines
315 B
C
#include <windows.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 */
|