ReactOS 0.4.15-dev-8614-gbc76250
testlist.c
Go to the documentation of this file.
1#define __ROS_LONG64__
2
3#define STANDALONE
4#include <apitest.h>
5
6extern void func_RtlCaptureContext(void);
7extern void func_RtlIntSafe(void);
8extern void func_RtlUnwind(void);
9
10const struct test winetest_testlist[] =
11{
12 { "RtlIntSafe", func_RtlIntSafe },
13
14#ifdef _M_IX86
15 { "RtlUnwind", func_RtlUnwind },
16#endif
17#ifdef _M_AMD64
18 { "RtlCaptureContext", func_RtlCaptureContext },
19#endif
20
21 { 0, 0 }
22};
#define test
Definition: rosglue.h:37
const struct test winetest_testlist[]
Definition: testlist.c:7
void func_RtlUnwind(void)
void func_RtlIntSafe(void)
void func_RtlCaptureContext(void)