[NTDLL_APITEST]
[reactos.git] / rostests / apitests / ntdll / testlist.c
1 #define WIN32_LEAN_AND_MEAN
2 #define __ROS_LONG64__
3 #include <windows.h>
4
5 #define STANDALONE
6 #include "wine/test.h"
7
8 extern void func_NtAllocateVirtualMemory(void);
9 extern void func_NtFreeVirtualMemory(void);
10 extern void func_NtSystemInformation(void);
11 extern void func_RtlGetFullPathName_UstrEx(void);
12 extern void func_RtlInitializeBitMap(void);
13 extern void func_ZwContinue(void);
14
15 const struct test winetest_testlist[] =
16 {
17 { "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
18 { "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
19 { "NtSystemInformation", func_NtSystemInformation },
20 { "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
21 { "RtlInitializeBitMap", func_RtlInitializeBitMap },
22 { "ZwContinue", func_ZwContinue },
23
24 { 0, 0 }
25 };