mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
b25491463d
- Add a test for CShellLink GetPath/SetPath behavior with environment variables. Patch by Andreas Maier. ROSTESTS-229 #resolve svn path=/trunk/; revision=71672
21 lines
514 B
C
21 lines
514 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_CMyComputer(void);
|
|
extern void func_CShellDesktop(void);
|
|
extern void func_CShellLink(void);
|
|
extern void func_menu(void);
|
|
extern void func_SHParseDisplayName(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CMyComputer", func_CMyComputer },
|
|
{ "CShellDesktop", func_CShellDesktop },
|
|
{ "CShellLink", func_CShellLink },
|
|
{ "menu", func_menu },
|
|
{ "SHParseDisplayName", func_SHParseDisplayName },
|
|
{ 0, 0 }
|
|
};
|