d7b25577196e7a38dafad0adb1fc0520caa1cacb
[reactos.git] / rostests / apitests / advapi32 / testlist.c
1 #define WIN32_LEAN_AND_MEAN
2 #define __ROS_LONG64__
3 #include <windows.h>
4
5 #define STANDALONE
6 #include "wine/test.h"
7
8 extern void func_CreateService(void);
9 extern void func_LockDatabase(void);
10 extern void func_QueryServiceConfig2(void);
11
12 const struct test winetest_testlist[] =
13 {
14 { "CreateService", func_CreateService },
15 { "LockDatabase" , func_LockDatabase },
16 { "QueryServiceConfig2", func_QueryServiceConfig2 },
17
18 { 0, 0 }
19 };
20