2011-04-28 22:10:51 +00:00
|
|
|
#define __ROS_LONG64__
|
|
|
|
|
|
|
|
#define STANDALONE
|
2013-09-22 17:52:42 +00:00
|
|
|
#include <apitest.h>
|
2011-04-28 22:10:51 +00:00
|
|
|
|
2013-12-19 21:39:09 +00:00
|
|
|
extern void func_dosdev(void);
|
2013-06-02 17:01:22 +00:00
|
|
|
extern void func_FindFiles(void);
|
2012-05-04 10:28:54 +00:00
|
|
|
extern void func_GetCurrentDirectory(void);
|
2011-04-28 22:10:51 +00:00
|
|
|
extern void func_GetDriveType(void);
|
2012-05-04 12:31:47 +00:00
|
|
|
extern void func_GetModuleFileName(void);
|
2013-12-19 21:39:09 +00:00
|
|
|
extern void func_interlck(void);
|
2012-08-27 16:34:17 +00:00
|
|
|
extern void func_lstrcpynW(void);
|
2012-10-10 19:10:49 +00:00
|
|
|
extern void func_MultiByteToWideChar(void);
|
2012-05-04 10:28:54 +00:00
|
|
|
extern void func_SetCurrentDirectory(void);
|
2012-09-11 04:34:03 +00:00
|
|
|
extern void func_SetUnhandledExceptionFilter(void);
|
2011-04-28 22:10:51 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2013-12-19 21:39:09 +00:00
|
|
|
{ "dosdev", func_dosdev },
|
2013-06-02 17:01:22 +00:00
|
|
|
{ "FindFiles", func_FindFiles },
|
2012-09-11 04:34:03 +00:00
|
|
|
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
|
|
|
{ "GetDriveType", func_GetDriveType },
|
|
|
|
{ "GetModuleFileName", func_GetModuleFileName },
|
2013-12-19 21:39:09 +00:00
|
|
|
{ "interlck", func_interlck },
|
2012-09-11 04:34:03 +00:00
|
|
|
{ "lstrcpynW", func_lstrcpynW },
|
2012-10-10 19:10:49 +00:00
|
|
|
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
2012-09-11 04:34:03 +00:00
|
|
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
|
|
|
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
|
2011-04-28 22:10:51 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|