xref: /reactos/dll/win32/winfax/precomp.h (revision 40462c92)
1 #include <stdarg.h>
2 #include <windef.h>
3 #include <winbase.h>
4 #include <winfax.h>
5 
6 /* INTERNAL *******************************************************************/
7 
8 ULONG DbgPrint(PCH Format,...);
9 #define UNIMPLEMENTED \
10   DbgPrint("%s:%i: %s() UNIMPLEMENTED!\n", __FILE__, __LINE__, __FUNCTION__); \
11   SetLastError(	ERROR_CALL_NOT_IMPLEMENTED)
12 
13 /* EOF */
14