[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_NtContinue(void);
9 extern void func_NtCreateFile(void);
10 extern void func_NtCreateThread(void);
11 extern void func_NtDeleteKey(void);
12 extern void func_NtFreeVirtualMemory(void);
13 extern void func_NtMapViewOfSection(void);
14 extern void func_NtMutant(void);
15 extern void func_NtProtectVirtualMemory(void);
16 extern void func_NtQueryKey(void);
17 extern void func_NtQuerySystemEnvironmentValue(void);
18 extern void func_NtQueryVolumeInformationFile(void);
19 extern void func_NtSaveKey(void);
20 extern void func_NtSystemInformation(void);
21 extern void func_RtlBitmap(void);
22 extern void func_RtlDetermineDosPathNameType(void);
23 extern void func_RtlDoesFileExists(void);
24 extern void func_RtlDosPathNameToNtPathName_U(void);
25 extern void func_RtlDosSearchPath_U(void);
26 extern void func_RtlDosSearchPath_Ustr(void);
27 extern void func_RtlGetFullPathName_U(void);
28 extern void func_RtlGetFullPathName_Ustr(void);
29 extern void func_RtlGetFullPathName_UstrEx(void);
30 extern void func_RtlGetLengthWithoutTrailingPathSeperators(void);
31 extern void func_RtlGetLongestNtPathLength(void);
32 extern void func_RtlInitializeBitMap(void);
33 extern void func_RtlMemoryStream(void);
34 extern void func_RtlReAllocateHeap(void);
35 extern void func_StackOverflow(void);
36 extern void func_TimerResolution(void);
37
38 const struct test winetest_testlist[] =
39 {
40 { "LdrEnumResources", func_LdrEnumResources },
41 { "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
42 { "NtContinue", func_NtContinue },
43 { "NtCreateFile", func_NtCreateFile },
44 { "NtCreateThread", func_NtCreateThread },
45 { "NtDeleteKey", func_NtDeleteKey },
46 { "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
47 { "NtMapViewOfSection", func_NtMapViewOfSection },
48 { "NtMutant", func_NtMutant },
49 { "NtProtectVirtualMemory", func_NtProtectVirtualMemory },
50 { "NtQueryKey", func_NtQueryKey },
51 { "NtQuerySystemEnvironmentValue", func_NtQuerySystemEnvironmentValue },
52 { "NtQueryVolumeInformationFile", func_NtQueryVolumeInformationFile },
53 { "NtSaveKey", func_NtSaveKey},
54 { "NtSystemInformation", func_NtSystemInformation },
55 { "RtlBitmapApi", func_RtlBitmap },
56 { "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
57 { "RtlDoesFileExists", func_RtlDoesFileExists },
58 { "RtlDosPathNameToNtPathName_U", func_RtlDosPathNameToNtPathName_U },
59 { "RtlDosSearchPath_U", func_RtlDosSearchPath_U },
60 { "RtlDosSearchPath_Ustr", func_RtlDosSearchPath_Ustr },
61 { "RtlGetFullPathName_U", func_RtlGetFullPathName_U },
62 { "RtlGetFullPathName_Ustr", func_RtlGetFullPathName_Ustr },
63 { "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
64 { "RtlGetLengthWithoutTrailingPathSeperators", func_RtlGetLengthWithoutTrailingPathSeperators },
65 { "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
66 { "RtlInitializeBitMap", func_RtlInitializeBitMap },
67 { "RtlMemoryStream", func_RtlMemoryStream },
68 { "RtlReAllocateHeap", func_RtlReAllocateHeap },
69 { "StackOverflow", func_StackOverflow },
70 { "TimerResolution", func_TimerResolution },
71
72 { 0, 0 }
73 };