Files
reactos/include/reactos/stubs.h
T
Hermès Bélusca-Maïto 65ce146169 Create a branch for working on csrss and co.
svn path=/branches/ros-csrss/; revision=57561
2012-10-14 13:04:31 +00:00

17 lines
379 B
C

#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 ); \
}