reactos/modules/rostests/apitests/umkm/testlist.c
Timo Kreuzer ea28951607 [UMKM_APITEST] Add a test for syscall handling
This is intentionally not part of ntdll_apitest, because that links to advapi32, which links to rpcrt4, which (wrongly!) links to ws2_32, which (wrongly!) links to user32, which breaks the test.
2024-04-06 08:14:52 +02:00

14 lines
219 B
C

#define __ROS_LONG64__
#define STANDALONE
#include <apitest.h>
extern void func_SystemCall(void);
const struct test winetest_testlist[] =
{
{ "SystemCall", func_SystemCall },
{ 0, 0 }
};