7dc96817f3b1a5cd6ce1108198d697ac136c5069
[reactos.git] / rostests / apitests / advapi32 / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 extern void func_CreateService(void);
7 extern void func_HKEY_CLASSES_ROOT(void);
8 extern void func_LockDatabase(void);
9 extern void func_QueryServiceConfig2(void);
10 extern void func_RtlEncryptMemory(void);
11 extern void func_SaferIdentifyLevel(void);
12
13 const struct test winetest_testlist[] =
14 {
15 { "CreateService", func_CreateService },
16 { "HKEY_CLASSES_ROOT", func_HKEY_CLASSES_ROOT },
17 { "LockDatabase" , func_LockDatabase },
18 { "QueryServiceConfig2", func_QueryServiceConfig2 },
19 { "RtlEncryptMemory", func_RtlEncryptMemory },
20 { "SaferIdentifyLevel", func_SaferIdentifyLevel },
21
22 { 0, 0 }
23 };
24