[NTDLL_APITEST] Add test for x86 RtlUnwind

This commit is contained in:
Timo Kreuzer 2024-01-08 19:53:28 +02:00
parent 382836f087
commit d52b70a73e
5 changed files with 146 additions and 0 deletions

View file

@ -5,11 +5,15 @@
extern void func_RtlCaptureContext(void);
extern void func_RtlIntSafe(void);
extern void func_RtlUnwind(void);
const struct test winetest_testlist[] =
{
{ "RtlIntSafe", func_RtlIntSafe },
#ifdef _M_IX86
{ "RtlUnwind", func_RtlUnwind },
#endif
#ifdef _M_AMD64
{ "RtlCaptureContext", func_RtlCaptureContext },
#endif