mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 21:34:00 +00:00
d313d838eb
Commit my FindFiles test. ROSTESTS-84 #resolve #comment Committed in revision 59146. svn path=/trunk/; revision=59146
28 lines
957 B
C
28 lines
957 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_FindFiles(void);
|
|
extern void func_GetCurrentDirectory(void);
|
|
extern void func_GetDriveType(void);
|
|
extern void func_GetModuleFileName(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[] =
|
|
{
|
|
{ "FindFiles", func_FindFiles },
|
|
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
|
{ "GetDriveType", func_GetDriveType },
|
|
{ "GetModuleFileName", func_GetModuleFileName },
|
|
{ "lstrcpynW", func_lstrcpynW },
|
|
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
|
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|