reactos/modules/rostests/apitests/rtl/testlist.c
2024-01-13 19:39:23 +02:00

23 lines
447 B
C

#define __ROS_LONG64__
#define STANDALONE
#include <apitest.h>
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
{ 0, 0 }
};