mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
26 lines
868 B
C
26 lines
868 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
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[] =
|
|
{
|
|
{ "GetCurrentDirectory", func_GetCurrentDirectory },
|
|
{ "GetDriveType", func_GetDriveType },
|
|
{ "GetModuleFileName", func_GetModuleFileName },
|
|
{ "lstrcpynW", func_lstrcpynW },
|
|
{ "MultiByteToWideChar", func_MultiByteToWideChar },
|
|
{ "SetCurrentDirectory", func_SetCurrentDirectory },
|
|
{ "SetUnhandledExceptionFilter", func_SetUnhandledExceptionFilter},
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|