Author: tkreuzer Date: Mon Nov 29 18:07:36 2010 New Revision: 49863
URL: http://svn.reactos.org/svn/reactos?rev=49863&view=rev Log: add stubs.h
Added: branches/cmake-bringup/include/reactos/stubs.h (with props)
Added: branches/cmake-bringup/include/reactos/stubs.h URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/include/reactos/st... ============================================================================== --- branches/cmake-bringup/include/reactos/stubs.h (added) +++ branches/cmake-bringup/include/reactos/stubs.h [iso-8859-1] Mon Nov 29 18:07:36 2010 @@ -1,0 +1,17 @@ + +#include <stdarg.h> +#include "windef.h" +#include "winbase.h" +#include "wine/config.h" +#include "wine/exception.h" + +#include <debug.h> + +void __wine_spec_unimplemented_stub(const char *module, const char *function ) +{ + ULONG_PTR args[2]; + + args[0] = (ULONG_PTR)module; + args[1] = (ULONG_PTR)function; + RaiseException( EXCEPTION_WINE_STUB, EH_NONCONTINUABLE, 2, args ); +}
Propchange: branches/cmake-bringup/include/reactos/stubs.h ------------------------------------------------------------------------------ svn:eol-style = native