mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[CMAKE]
Convert __wine_spec_unimplemented_stub to a macro svn path=/branches/cmake-bringup/; revision=49888
This commit is contained in:
@@ -7,11 +7,10 @@
|
||||
|
||||
#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 );
|
||||
#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 ); \
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user