[THEMES]
[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_NtFreeVirtualMemory(void);
12 extern void func_NtMapViewOfSection(void);
13 extern void func_NtProtectVirtualMemory(void);
14 extern void func_NtQuerySystemEnvironmentValue(void);
15 extern void func_NtSystemInformation(void);
16 extern void func_RtlBitmap(void);
17 extern void func_RtlDetermineDosPathNameType(void);
18 extern void func_RtlDoesFileExists(void);
19 extern void func_RtlDosPathNameToNtPathName_U(void);
20 extern void func_RtlDosSearchPath_U(void);
21 extern void func_RtlDosSearchPath_Ustr(void);
22 extern void func_RtlGetFullPathName_U(void);
23 extern void func_RtlGetFullPathName_Ustr(void);
24 extern void func_RtlGetFullPathName_UstrEx(void);
25 extern void func_RtlGetLengthWithoutTrailingPathSeperators(void);
26 extern void func_RtlGetLongestNtPathLength(void);
27 extern void func_RtlInitializeBitMap(void);
28 extern void func_RtlMemoryStream(void);
29 extern void func_TimerResolution(void);
30
31 const struct test winetest_testlist[] =
32 {
33 { "LdrEnumResources", func_LdrEnumResources },
34 { "NtAllocateVirtualMemory", func_NtAllocateVirtualMemory },
35 { "NtContinue", func_NtContinue },
36 { "NtCreateFile", func_NtCreateFile },
37 { "NtCreateThread", func_NtCreateThread },
38 { "NtFreeVirtualMemory", func_NtFreeVirtualMemory },
39 { "NtMapViewOfSection", func_NtMapViewOfSection },
40 { "NtProtectVirtualMemory", func_NtProtectVirtualMemory },
41 { "NtQuerySystemEnvironmentValue", func_NtQuerySystemEnvironmentValue },
42 { "NtSystemInformation", func_NtSystemInformation },
43 { "RtlBitmapApi", func_RtlBitmap },
44 { "RtlDetermineDosPathNameType", func_RtlDetermineDosPathNameType },
45 { "RtlDoesFileExists", func_RtlDoesFileExists },
46 { "RtlDosPathNameToNtPathName_U", func_RtlDosPathNameToNtPathName_U },
47 { "RtlDosSearchPath_U", func_RtlDosSearchPath_U },
48 { "RtlDosSearchPath_Ustr", func_RtlDosSearchPath_Ustr },
49 { "RtlGetFullPathName_U", func_RtlGetFullPathName_U },
50 { "RtlGetFullPathName_Ustr", func_RtlGetFullPathName_Ustr },
51 { "RtlGetFullPathName_UstrEx", func_RtlGetFullPathName_UstrEx },
52 { "RtlGetLengthWithoutTrailingPathSeperators", func_RtlGetLengthWithoutTrailingPathSeperators },
53 { "RtlGetLongestNtPathLength", func_RtlGetLongestNtPathLength },
54 { "RtlInitializeBitMap", func_RtlInitializeBitMap },
55 { "RtlMemoryStream", func_RtlMemoryStream },
56 { "TimerResolution", func_TimerResolution },
57
58 { 0, 0 }
59 };