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