[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_dosdev(void);
7 extern void func_FindFiles(void);
8 extern void func_GetCurrentDirectory(void);
9 extern void func_GetDriveType(void);
10 extern void func_GetModuleFileName(void);
11 extern void func_interlck(void);
12 extern void func_lstrcpynW(void);
13 extern void func_MultiByteToWideChar(void);
14 extern void func_PrivMoveFileIdentityW(void);
15 extern void func_SetCurrentDirectory(void);
16 extern void func_SetUnhandledExceptionFilter(void);
17 extern void func_TerminateProcess(void);
18
19 const struct test winetest_testlist[] =
20 {
21 { "dosdev", func_dosdev },
22 { "FindFiles", func_FindFiles },
23 { "GetCurrentDirectory", func_GetCurrentDirectory },
24 { "GetDriveType", func_GetDriveType },
25 { "GetModuleFileName", func_GetModuleFileName },
26 { "interlck", func_interlck },
27 { "lstrcpynW", func_lstrcpynW },
28 { "MultiByteToWideChar", func_MultiByteToWideChar },
29 { "PrivMoveFileIdentityW", func_PrivMoveFileIdentityW },
30 { "SetCurrentDirectory", func_SetCurrentDirectory },
31 { "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter },
32 { "TerminateProcess", func_TerminateProcess },
33 { 0, 0 }
34 };
35