2011-04-28 22:10:51 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define __ROS_LONG64__
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#define STANDALONE
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
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-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 },
|
|
|
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
|
|
|
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
|
2011-04-28 22:10:51 +00:00
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|