- Synchronize up to trunk's revision r57864.
[reactos.git] / include / reactos / stubs.h
1
2 #include <stdarg.h>
3 #include "windef.h"
4 #include "winbase.h"
5 #include "wine/config.h"
6 #include "wine/exception.h"
7
8 #include <reactos/debug.h>
9
10 #define __wine_spec_unimplemented_stub(module, function) \
11 { \
12 ULONG_PTR args[2]; \
13 args[0] = (ULONG_PTR)module; \
14 args[1] = (ULONG_PTR)function; \
15 RaiseException( EXCEPTION_WINE_STUB, EH_NONCONTINUABLE, 2, args ); \
16 }