mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 13:33:42 +00:00
9efafd640f
The code is mostly unchanged. This includes the following changes: * Move all wine code to crt/wine to keep it separated from our own code * Add a minimal winternl.h * Remove the asm macros from wine/config.h * Include wine/asm.h where required * Fix the names of the exported functions (GCC uses thiscall now and no wrappers are used anymore)
22 lines
405 B
C
22 lines
405 B
C
|
|
#include <precomp.h>
|
|
|
|
|
|
_CRTIMP
|
|
EXCEPTION_DISPOSITION
|
|
__cdecl
|
|
__C_specific_handler(
|
|
struct _EXCEPTION_RECORD *_ExceptionRecord,
|
|
void *_EstablisherFrame,
|
|
struct _CONTEXT *_ContextRecord,
|
|
struct _DISPATCHER_CONTEXT *_DispatcherContext)
|
|
{
|
|
UNIMPLEMENTED;
|
|
__debugbreak();
|
|
return 0;
|
|
}
|
|
|
|
void __cdecl _local_unwind(void* frame, void* target)
|
|
{
|
|
RtlUnwind(frame, target, NULL, 0);
|
|
}
|