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