[NTDLL_APITEST]
[reactos.git] / rostests / apitests / ntdll / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 extern void func_LdrEnumResources(void);
7 extern void func_NtAllocateVirtualMemory(void);
8 extern void func_NtCreateThread(void);
9 extern void func_NtFreeVirtualMemory(void);
10 extern void func_NtMapViewOfSection(void);
11 extern void func_NtProtectVirtualMemory(void);
12 extern void func_NtQuerySystemEnvironmentValue(void);
13 extern void func_NtSystemInformation(void);
14 extern void func_RtlBitmap(void);
15 extern void func_RtlDetermineDosPathNameType(void);
16 extern void func_RtlDoesFileExists(void);
17 extern void func_RtlDosPathNameToNtPathName_U(void);
18 extern void func_RtlDosSearchPath_U(void);
19 extern void func_RtlDosSearchPath_Ustr(void);
20 extern void func_RtlGetFullPathName_U(void);
21 extern void func_RtlGetFullPathName_Ustr(void);
22 extern void func_RtlGetFullPathName_UstrEx(void);
23 extern void func_RtlGetLengthWithoutTrailingPathSeperators(void);
24 extern void func_RtlGetLongestNtPathLength(void);
25 extern void func_RtlInitializeBitMap(void);
26 extern void func_TimerResolution(void);
27 extern void func_ZwContinue(void);
28
29 const struct test winetest_testlist[] =
30 {
31 { "LdrEnumResources", func_LdrEnumResources },
32 { "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
33 { "NtCreateThread", func_NtCreateThread },
34 { "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
35 { "NtMapViewOfSection", func_NtMapViewOfSection },
36 { "NtProtectVirtualMemory", func_NtProtectVirtualMemory },
37 { "NtQuerySystemEnvironmentValue", func_NtQuerySystemEnvironmentValue },
38 { "NtSystemInformation", func_NtSystemInformation },
39 { "RtlBitmapApi", func_RtlBitmap },
40 { "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
41 { "RtlDoesFileExists", func_RtlDoesFileExists },
42 { "RtlDosPathNameToNtPathName_U", func_RtlDosPathNameToNtPathName_U },
43 { "RtlDosSearchPath_U", func_RtlDosSearchPath_U },
44 { "RtlDosSearchPath_Ustr", func_RtlDosSearchPath_Ustr },
45 { "RtlGetFullPathName_U", func_RtlGetFullPathName_U },
46 { "RtlGetFullPathName_Ustr", func_RtlGetFullPathName_Ustr },
47 { "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
48 { "RtlGetLengthWithoutTrailingPathSeperators", func_RtlGetLengthWithoutTrailingPathSeperators },
49 { "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
50 { "RtlInitializeBitMap", func_RtlInitializeBitMap },
51 { "TimerResolution", func_TimerResolution },
52 { "ZwContinue", func_ZwContinue },
53
54 { 0, 0 }
55 };