mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
18 lines
440 B
C
18 lines
440 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_CMyComputer(void);
|
|
extern void func_CShellDesktop(void);
|
|
extern void func_menu(void);
|
|
extern void func_SHParseDisplayName(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CMyComputer", func_CMyComputer },
|
|
{ "CShellDesktop", func_CShellDesktop },
|
|
{ "menu", func_menu },
|
|
{ "SHParseDisplayName", func_SHParseDisplayName },
|
|
{ 0, 0 }
|
|
};
|