Author: tkreuzer Date: Fri Feb 11 17:41:05 2011 New Revision: 50661
URL: http://svn.reactos.org/svn/reactos?rev=50661&view=rev Log: Add missing stubs.h
Added: trunk/reactos/include/reactos/stubs.h (with props)
Added: trunk/reactos/include/reactos/stubs.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/stubs.h?rev... ============================================================================== --- trunk/reactos/include/reactos/stubs.h (added) +++ trunk/reactos/include/reactos/stubs.h [iso-8859-1] Fri Feb 11 17:41:05 2011 @@ -1,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 ); \ +}
Propchange: trunk/reactos/include/reactos/stubs.h ------------------------------------------------------------------------------ svn:eol-style = native