mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 04:13:35 +00:00
25 lines
563 B
C
25 lines
563 B
C
|
|
#define wine_dbgstr_wn wine_dbgstr_wn_
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_RtlCaptureContext(void);
|
|
extern void func_RtlIntSafe(void);
|
|
extern void func_RtlUnwind(void);
|
|
extern void func_RtlVirtualUnwind(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "RtlIntSafe", func_RtlIntSafe },
|
|
|
|
#ifdef _M_IX86
|
|
{ "RtlUnwind", func_RtlUnwind },
|
|
#endif
|
|
#ifdef _M_AMD64
|
|
{ "RtlCaptureContext", func_RtlCaptureContext },
|
|
{ "RtlVirtualUnwind", func_RtlVirtualUnwind },
|
|
#endif
|
|
|
|
{ 0, 0 }
|
|
};
|