mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
23 lines
447 B
C
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 }
|
|
};
|