[KERNEL32_TEST]
[reactos.git] / rostests / apitests / kernel32 / testlist.c
index f29e08f..e6836ac 100644 (file)
@@ -1,26 +1,31 @@
-#define WIN32_LEAN_AND_MEAN
 #define __ROS_LONG64__
-#include <windows.h>
 
 #define STANDALONE
-#include "wine/test.h"
+#include <apitest.h>
 
+extern void func_dosdev(void);
+extern void func_FindFiles(void);
 extern void func_GetCurrentDirectory(void);
 extern void func_GetDriveType(void);
 extern void func_GetModuleFileName(void);
+extern void func_interlck(void);
 extern void func_lstrcpynW(void);
+extern void func_MultiByteToWideChar(void);
 extern void func_SetCurrentDirectory(void);
 extern void func_SetUnhandledExceptionFilter(void);
 
 const struct test winetest_testlist[] =
 {
+    { "dosdev",                      func_dosdev },
+    { "FindFiles",                   func_FindFiles },
     { "GetCurrentDirectory",         func_GetCurrentDirectory },
     { "GetDriveType",                func_GetDriveType },
     { "GetModuleFileName",           func_GetModuleFileName },
+    { "interlck",                    func_interlck },
     { "lstrcpynW",                   func_lstrcpynW },
+    { "MultiByteToWideChar",         func_MultiByteToWideChar },
     { "SetCurrentDirectory",         func_SetCurrentDirectory },
     { "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
-
     { 0, 0 }
 };