mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:33:32 +00:00
[CRT]
- Add __C_specific_handler stub - Add aliases for C++ code on amd64 builds - Fix fmod symbol - Merge .CRT section into .data on amd64 - remove an old hack svn path=/trunk/; revision=53342
This commit is contained in:
parent
a69bcd8bff
commit
7f5e1ecb95
8 changed files with 89 additions and 35 deletions
17
reactos/lib/sdk/crt/except/amd64/ehandler.c
Normal file
17
reactos/lib/sdk/crt/except/amd64/ehandler.c
Normal file
|
@ -0,0 +1,17 @@
|
|||
|
||||
#include <precomp.h>
|
||||
|
||||
|
||||
_CRTIMP
|
||||
EXCEPTION_DISPOSITION
|
||||
__cdecl
|
||||
__C_specific_handler(
|
||||
struct _EXCEPTION_RECORD *_ExceptionRecord,
|
||||
void *_EstablisherFrame,
|
||||
struct _CONTEXT *_ContextRecord,
|
||||
struct _DISPATCHER_CONTEXT *_DispatcherContext)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue