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