803f046676a3799214b6b305e6c57037aecf511a
[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_LockDatabase(void);
8 extern void func_QueryServiceConfig2(void);
9 extern void func_RtlEncryptMemory(void);
10 extern void func_SaferIdentifyLevel(void);
11
12 const struct test winetest_testlist[] =
13 {
14 { "CreateService", func_CreateService },
15 { "LockDatabase" , func_LockDatabase },
16 { "QueryServiceConfig2", func_QueryServiceConfig2 },
17 { "RtlEncryptMemory", func_RtlEncryptMemory },
18 { "SaferIdentifyLevel", func_SaferIdentifyLevel },
19
20 { 0, 0 }
21 };
22