mirror of
https://github.com/reactos/reactos.git
synced 2025-07-25 23:14:09 +00:00
17 lines
411 B
C
17 lines
411 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_SystemCall(void);
|
|
extern void func_XStateConfig(void);
|
|
extern void func_XStateSave(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "SystemCall", func_SystemCall },
|
|
{ "XStateConfig", func_XStateConfig },
|
|
{ "XStateSave", func_XStateSave },
|
|
|
|
{ 0, 0 }
|
|
};
|