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