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 10:28:54 +00:00
|
|
|
extern void func_SetCurrentDirectory(void);
|
2011-04-28 22:10:51 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
2012-05-04 10:28:54 +00:00
|
|
|
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
|
|
|
{ "GetDriveType", func_GetDriveType },
|
|
|
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
2011-04-28 22:10:51 +00:00
|
|
|
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|