2011-04-28 22:10:51 +00:00
|
|
|
#define __ROS_LONG64__
|
|
|
|
|
|
|
|
#define STANDALONE
|
2013-02-05 17:54:22 +00:00
|
|
|
#include <wine/test.h>
|
2011-04-28 22:10:51 +00:00
|
|
|
|
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);
|
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[] =
|
|
|
|
{
|
2012-09-11 04:34:03 +00:00
|
|
|
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
|
|
|
{ "GetDriveType", func_GetDriveType },
|
|
|
|
{ "GetModuleFileName", func_GetModuleFileName },
|
|
|
|
{ "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 }
|
|
|
|
};
|
|
|
|
|