Reactos
at master 120 lines 5.1 kB view raw
1 2#define STANDALONE 3#include <wine/test.h> 4 5extern void func_AddCommas(void); 6extern void func_Control_RunDLLW(void); 7extern void func_CFSFolder(void); 8extern void func_CheckEscapes(void); 9extern void func_CIDLData(void); 10extern void func_CMyComputer(void); 11extern void func_CommandLineToArgvW(void); 12extern void func_CShellDesktop(void); 13extern void func_CShellLink(void); 14extern void func_CUserNotification(void); 15extern void func_DragDrop(void); 16extern void func_ExtractIconEx(void); 17extern void func_FindExecutable(void); 18extern void func_GetDisplayNameOf(void); 19extern void func_GUIDFromString(void); 20extern void func_ILCreateFromPath(void); 21extern void func_ILIsEqual(void); 22extern void func_Int64ToString(void); 23extern void func_IShellFolderViewCB(void); 24extern void func_menu(void); 25extern void func_OpenAs_RunDLL(void); 26extern void func_PathIsEqualOrSubFolder(void); 27extern void func_PathIsTemporary(void); 28extern void func_PathMakeUniqueName(void); 29extern void func_PathProcessCommand(void); 30extern void func_PathResolve(void); 31extern void func_PIDL(void); 32extern void func_RealShellExecuteEx(void); 33extern void func_SHAppBarMessage(void); 34extern void func_SHChangeNotify(void); 35extern void func_SHCreateDataObject(void); 36extern void func_SHCreateFileDataObject(void); 37extern void func_SHCreateFileExtractIconW(void); 38extern void func_SHDefExtractIcon(void); 39extern void func_SHEnumerateUnreadMailAccountsW(void); 40extern void func_She(void); 41extern void func_ShellExec_RunDLL(void); 42extern void func_ShellExecCmdLine(void); 43extern void func_ShellExecuteEx(void); 44extern void func_ShellExecuteW(void); 45extern void func_ShellHook(void); 46extern void func_ShellState(void); 47extern void func_SHGetAttributesFromDataObject(void); 48extern void func_SHGetComputerDisplayNameW(void); 49extern void func_SHGetFileInfo(void); 50extern void func_SHGetUnreadMailCountW(void); 51extern void func_SHGetUserDisplayName(void); 52extern void func_SHIsBadInterfacePtr(void); 53extern void func_SHLimitInputEdit(void); 54extern void func_SHParseDisplayName(void); 55extern void func_SHShouldShowWizards(void); 56extern void func_SHSimpleIDListFromPath(void); 57extern void func_SHRestricted(void); 58extern void func_SHSetUnreadMailCountW(void); 59extern void func_StrRStr(void); 60 61const struct test winetest_testlist[] = 62{ 63 { "AddCommas", func_AddCommas }, 64 { "Control_RunDLLW", func_Control_RunDLLW }, 65 { "CFSFolder", func_CFSFolder }, 66 { "CheckEscapes", func_CheckEscapes }, 67 { "CIDLData", func_CIDLData }, 68 { "CMyComputer", func_CMyComputer }, 69 { "CommandLineToArgvW", func_CommandLineToArgvW }, 70 { "CShellDesktop", func_CShellDesktop }, 71 { "CShellLink", func_CShellLink }, 72 //{ "CUserNotification", func_CUserNotification }, // Test is broken on Win 2003 73 { "DragDrop", func_DragDrop }, 74 { "ExtractIconEx", func_ExtractIconEx }, 75 { "FindExecutable", func_FindExecutable }, 76 { "GetDisplayNameOf", func_GetDisplayNameOf }, 77 { "GUIDFromString", func_GUIDFromString }, 78 { "ILCreateFromPath", func_ILCreateFromPath }, 79 { "ILIsEqual", func_ILIsEqual }, 80 { "Int64ToString", func_Int64ToString }, 81 { "IShellFolderViewCB", func_IShellFolderViewCB }, 82 { "menu", func_menu }, 83 //{ "OpenAs_RunDLL", func_OpenAs_RunDLL }, // Test hangs on Win 2003 84 { "PathIsEqualOrSubFolder", func_PathIsEqualOrSubFolder }, 85 { "PathIsTemporary", func_PathIsTemporary }, 86 { "PathMakeUniqueName", func_PathMakeUniqueName }, 87 { "PathProcessCommand", func_PathProcessCommand }, 88 { "PathResolve", func_PathResolve }, 89 { "PIDL", func_PIDL }, 90 { "RealShellExecuteEx", func_RealShellExecuteEx }, 91 { "SHAppBarMessage", func_SHAppBarMessage }, 92 { "SHChangeNotify", func_SHChangeNotify }, 93 { "SHCreateDataObject", func_SHCreateDataObject }, 94 { "SHCreateFileDataObject", func_SHCreateFileDataObject }, 95 { "SHCreateFileExtractIconW", func_SHCreateFileExtractIconW }, 96 { "SHDefExtractIcon", func_SHDefExtractIcon }, 97 { "SHEnumerateUnreadMailAccountsW", func_SHEnumerateUnreadMailAccountsW }, 98 { "She", func_She }, 99 //{ "ShellExec_RunDLL", func_ShellExec_RunDLL }, Broke on Windows 100 //{ "ShellExecCmdLine", func_ShellExecCmdLine }, Broke on Windows 101 //{ "ShellExecuteEx", func_ShellExecuteEx }, Broke on Windows 102 //{ "ShellExecuteW", func_ShellExecuteW }, Broke on Windows 103 { "ShellHook", func_ShellHook }, 104 { "ShellState", func_ShellState }, 105 { "SHGetAttributesFromDataObject", func_SHGetAttributesFromDataObject }, 106 { "SHGetComputerDisplayNameW", func_SHGetComputerDisplayNameW }, 107 { "SHGetFileInfo", func_SHGetFileInfo }, 108 { "SHGetUnreadMailCountW", func_SHGetUnreadMailCountW }, 109 { "SHGetUserDisplayName", func_SHGetUserDisplayName }, 110 { "SHIsBadInterfacePtr", func_SHIsBadInterfacePtr }, 111 { "SHLimitInputEdit", func_SHLimitInputEdit }, 112 { "SHParseDisplayName", func_SHParseDisplayName }, 113 { "SHShouldShowWizards", func_SHShouldShowWizards }, 114 { "SHSimpleIDListFromPath", func_SHSimpleIDListFromPath }, 115 { "SHRestricted", func_SHRestricted }, 116 { "SHSetUnreadMailCountW", func_SHSetUnreadMailCountW }, 117 { "StrRStr", func_StrRStr }, 118 119 { 0, 0 } 120};