[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_StackOverflow(void);
35 extern void func_TimerResolution(void);
36
37 const struct test winetest_testlist[] =
38 {
39 { "LdrEnumResources", func_LdrEnumResources },
40 { "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
41 { "NtContinue", func_NtContinue },
42 { "NtCreateFile", func_NtCreateFile },
43 { "NtCreateThread", func_NtCreateThread },
44 { "NtDeleteKey", func_NtDeleteKey },
45 { "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
46 { "NtMapViewOfSection", func_NtMapViewOfSection },
47 { "NtMutant", func_NtMutant },
48 { "NtProtectVirtualMemory", func_NtProtectVirtualMemory },
49 { "NtQueryKey", func_NtQueryKey },
50 { "NtQuerySystemEnvironmentValue", func_NtQuerySystemEnvironmentValue },
51 { "NtQueryVolumeInformationFile", func_NtQueryVolumeInformationFile },
52 { "NtSaveKey", func_NtSaveKey},
53 { "NtSystemInformation", func_NtSystemInformation },
54 { "RtlBitmapApi", func_RtlBitmap },
55 { "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
56 { "RtlDoesFileExists", func_RtlDoesFileExists },
57 { "RtlDosPathNameToNtPathName_U", func_RtlDosPathNameToNtPathName_U },
58 { "RtlDosSearchPath_U", func_RtlDosSearchPath_U },
59 { "RtlDosSearchPath_Ustr", func_RtlDosSearchPath_Ustr },
60 { "RtlGetFullPathName_U", func_RtlGetFullPathName_U },
61 { "RtlGetFullPathName_Ustr", func_RtlGetFullPathName_Ustr },
62 { "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
63 { "RtlGetLengthWithoutTrailingPathSeperators", func_RtlGetLengthWithoutTrailingPathSeperators },
64 { "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
65 { "RtlInitializeBitMap", func_RtlInitializeBitMap },
66 { "RtlMemoryStream", func_RtlMemoryStream },
67 { "StackOverflow", func_StackOverflow },
68 { "TimerResolution", func_TimerResolution },
69
70 { 0, 0 }
71 };