[ADVAPI32_APITEST]
[reactos.git] / rostests / apitests / advapi32 / testlist.c
index d5debe9..76a2079 100644 (file)
@@ -1,18 +1,34 @@
 #define __ROS_LONG64__
 
 #define STANDALONE
-#include <wine/test.h>
+#include <apitest.h>
 
 extern void func_CreateService(void);
+extern void func_DuplicateTokenEx(void);
+extern void func_eventlog(void);
+extern void func_HKEY_CLASSES_ROOT(void);
+extern void func_IsTextUnicode(void);
 extern void func_LockDatabase(void);
 extern void func_QueryServiceConfig2(void);
+extern void func_RegEnumKey(void);
+extern void func_RegEnumValueW(void);
+extern void func_RegQueryInfoKey(void);
+extern void func_RtlEncryptMemory(void);
 extern void func_SaferIdentifyLevel(void);
 
 const struct test winetest_testlist[] =
 {
     { "CreateService", func_CreateService },
+    { "DuplicateTokenEx", func_DuplicateTokenEx },
+    { "eventlog_supp", func_eventlog },
+    { "HKEY_CLASSES_ROOT", func_HKEY_CLASSES_ROOT },
+    { "IsTextUnicode" , func_IsTextUnicode },
     { "LockDatabase" , func_LockDatabase },
     { "QueryServiceConfig2", func_QueryServiceConfig2 },
+    { "RegEnumKey", func_RegEnumKey },
+    { "RegEnumValueW", func_RegEnumValueW },
+    { "RegQueryInfoKey", func_RegQueryInfoKey },
+    { "RtlEncryptMemory", func_RtlEncryptMemory },
     { "SaferIdentifyLevel", func_SaferIdentifyLevel },
 
     { 0, 0 }