Commit a2a4133f authored by Alexandre Julliard's avatar Alexandre Julliard

Added RtlUnwind in ntdll, and made kernel32 spec entry a forward to

the ntdll one.
parent e4177e67
......@@ -2,6 +2,8 @@ name kernel32
type win32
init MAIN_KernelInit
import ntdll.dll
# Functions exported by the Win95 kernel32.dll
# (these need to have these exact ordinals, for some win95 dlls
# import kernel32.dll by ordinal)
......@@ -604,10 +606,10 @@ init MAIN_KernelInit
585 stdcall RemoveDirectoryW(wstr) RemoveDirectoryW
586 stdcall ResetEvent(long) ResetEvent
587 stdcall ResumeThread(long) ResumeThread
588 stdcall RtlFillMemory(ptr long long) RtlFillMemory
589 stdcall RtlMoveMemory(ptr ptr long) RtlMoveMemory
590 register RtlUnwind() RtlUnwind
591 stdcall RtlZeroMemory(ptr long) RtlZeroMemory
588 forward RtlFillMemory NTDLL.RtlFillMemory
589 forward RtlMoveMemory NTDLL.RtlMoveMemory
590 forward RtlUnwind NTDLL.RtlUnwind
591 forward RtlZeroMemory NTDLL.RtlZeroMemory
592 register SMapLS() SMapLS
593 register SMapLS_IP_EBP_12() SMapLS_IP_EBP_12
594 register SMapLS_IP_EBP_16() SMapLS_IP_EBP_16
......
......@@ -523,7 +523,7 @@ type win32
515 stdcall RtlUnicodeToOemN(ptr long ptr ptr long) RtlUnicodeToOemN
516 stub RtlUniform
517 stub RtlUnlockHeap
518 stub RtlUnwind
518 register RtlUnwind() RtlUnwind
519 stub RtlUpcaseUnicodeChar
520 stdcall RtlUpcaseUnicodeString(ptr ptr long) RtlUpcaseUnicodeString
521 stub RtlUpcaseUnicodeStringToAnsiString
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment