2023-05-20 06:36:13 +00:00
|
|
|
#define __ROS_LONG64__
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include <apitest.h>
|
|
|
|
|
|
|
|
extern void func_RtlCaptureContext(void);
|
2023-05-20 09:02:03 +00:00
|
|
|
extern void func_RtlIntSafe(void);
|
2024-01-08 17:53:28 +00:00
|
|
|
extern void func_RtlUnwind(void);
|
2023-05-20 06:36:13 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2023-05-20 09:02:03 +00:00
|
|
|
{ "RtlIntSafe", func_RtlIntSafe },
|
|
|
|
|
2024-01-08 17:53:28 +00:00
|
|
|
#ifdef _M_IX86
|
|
|
|
{ "RtlUnwind", func_RtlUnwind },
|
|
|
|
#endif
|
2023-05-20 06:36:13 +00:00
|
|
|
#ifdef _M_AMD64
|
|
|
|
{ "RtlCaptureContext", func_RtlCaptureContext },
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|