Add missing stubs.h

svn path=/trunk/; revision=50661
This commit is contained in:
Timo Kreuzer 2011-02-11 17:41:05 +00:00
parent f45c49b9d3
commit 8ce4c3ffdb

View file

@ -0,0 +1,16 @@
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "wine/config.h"
#include "wine/exception.h"
#include <reactos/debug.h>
#define __wine_spec_unimplemented_stub(module, function) \
{ \
ULONG_PTR args[2]; \
args[0] = (ULONG_PTR)module; \
args[1] = (ULONG_PTR)function; \
RaiseException( EXCEPTION_WINE_STUB, EH_NONCONTINUABLE, 2, args ); \
}