mirror of
https://github.com/reactos/reactos.git
synced 2025-05-20 17:45:06 +00:00

Previously it was in cpprt, which is a support library for C++, containing functions that are not exported by msvcrt. But since Vista __CxxFrameHandler3 is exported by msvcrt. Therefore move it to crt, and to satisfy pre-Vista configurations, also add it to msvcrtex.
15 lines
200 B
ArmAsm
15 lines
200 B
ArmAsm
|
|
#include <asm.inc>
|
|
|
|
.code64
|
|
.align 4
|
|
|
|
MACRO(DEFINE_ALIAS, alias, orig)
|
|
EXTERN &orig : PROC
|
|
ALIAS <&alias> = <&orig>
|
|
ENDM
|
|
|
|
; These are the same
|
|
DEFINE_ALIAS __CxxFrameHandler3, __CxxFrameHandler
|
|
|
|
END
|