1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

ntdll: Use __ASM_GLOBAL_IMPORT for RtlUnwind.

Avoids importing locally defined symbols on ARM and ARM64, where we call it from winecrt0.
This commit is contained in:
Jacek Caban 2024-04-01 16:59:41 +02:00 committed by Alexandre Julliard
parent 593dcb1b5c
commit aa2aa2033c

View file

@ -2329,6 +2329,8 @@ void WINAPI RtlUnwind( void *frame, void *target_ip, EXCEPTION_RECORD *rec, void
RtlUnwindEx( frame, target_ip, rec, retval, &context, NULL );
}
__ASM_GLOBAL_IMPORT(RtlUnwind)
/*******************************************************************
* _local_unwind (NTDLL.@)