[SPIDER]
[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_SetCurrentDirectory(void);
15 extern void func_SetUnhandledExceptionFilter(void);
16
17 const struct test winetest_testlist[] =
18 {
19 { "dosdev", func_dosdev },
20 { "FindFiles", func_FindFiles },
21 { "GetCurrentDirectory", func_GetCurrentDirectory },
22 { "GetDriveType", func_GetDriveType },
23 { "GetModuleFileName", func_GetModuleFileName },
24 { "interlck", func_interlck },
25 { "lstrcpynW", func_lstrcpynW },
26 { "MultiByteToWideChar", func_MultiByteToWideChar },
27 { "SetCurrentDirectory", func_SetCurrentDirectory },
28 { "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
29 { 0, 0 }
30 };
31