[KERNEL32_APITEST]
[reactos.git] / rostests / apitests / kernel32 / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 extern void func_DefaultActCtx(void);
7 extern void func_dosdev(void);
8 extern void func_FindActCtxSectionStringW(void);
9 extern void func_FindFiles(void);
10 extern void func_GetComputerNameEx(void);
11 extern void func_GetCurrentDirectory(void);
12 extern void func_GetDriveType(void);
13 extern void func_GetModuleFileName(void);
14 extern void func_interlck(void);
15 extern void func_LoadLibraryExW(void);
16 extern void func_lstrcpynW(void);
17 extern void func_Mailslot(void);
18 extern void func_MultiByteToWideChar(void);
19 extern void func_PrivMoveFileIdentityW(void);
20 extern void func_SetConsoleWindowInfo(void);
21 extern void func_SetCurrentDirectory(void);
22 extern void func_SetUnhandledExceptionFilter(void);
23 extern void func_TerminateProcess(void);
24 extern void func_TunnelCache(void);
25 extern void func_WideCharToMultiByte(void);
26
27 const struct test winetest_testlist[] =
28 {
29 { "DefaultActCtx", func_DefaultActCtx },
30 { "dosdev", func_dosdev },
31 { "FindActCtxSectionStringW", func_FindActCtxSectionStringW },
32 { "FindFiles", func_FindFiles },
33 { "GetComputerNameEx", func_GetComputerNameEx },
34 { "GetCurrentDirectory", func_GetCurrentDirectory },
35 { "GetDriveType", func_GetDriveType },
36 { "GetModuleFileName", func_GetModuleFileName },
37 { "interlck", func_interlck },
38 { "LoadLibraryExW", func_LoadLibraryExW },
39 { "lstrcpynW", func_lstrcpynW },
40 { "MailslotRead", func_Mailslot },
41 { "MultiByteToWideChar", func_MultiByteToWideChar },
42 { "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
43 { "SetConsoleWindowInfo", func_SetConsoleWindowInfo },
44 { "SetCurrentDirectory", func_SetCurrentDirectory },
45 { "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter },
46 { "TerminateProcess", func_TerminateProcess },
47 { "TunnelCache", func_TunnelCache },
48 { "WideCharToMultiByte", func_WideCharToMultiByte },
49 { 0, 0 }
50 };
51