[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_RtlDetermineDosPathNameType(void);
12 extern void func_RtlDoesFileExists(void);
13 extern void func_RtlGetFullPathName_U(void);
14 extern void func_RtlGetFullPathName_Ustr(void);
15 extern void func_RtlGetFullPathName_UstrEx(void);
16 extern void func_RtlGetLongestNtPathLength(void);
17 extern void func_RtlInitializeBitMap(void);
18 extern void func_ZwContinue(void);
19
20 const struct test winetest_testlist[] =
21 {
22 { "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
23 { "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
24 { "NtSystemInformation", func_NtSystemInformation },
25 { "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
26 { "RtlDoesFileExists", func_RtlDoesFileExists },
27 { "RtlGetFullPathName_U", func_RtlGetFullPathName_U },
28 { "RtlGetFullPathName_Ustr", func_RtlGetFullPathName_Ustr },
29 { "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
30 { "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
31 { "RtlInitializeBitMap", func_RtlInitializeBitMap },
32 { "ZwContinue", func_ZwContinue },
33
34 { 0, 0 }
35 };