mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00

I have a plan to implement shell32!SHRestricted correctly. JIRA issue: CORE-11515 In the testcase: - Get procedure SHGetRestriction from shlwapi.dll. - Call SHGetRestriction to test and check the results.
32 lines
1.2 KiB
C
32 lines
1.2 KiB
C
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_PathFindOnPath(void);
|
|
extern void func_isuncpath(void);
|
|
extern void func_isuncpathserver(void);
|
|
extern void func_isuncpathservershare(void);
|
|
extern void func_PathUnExpandEnvStrings(void);
|
|
extern void func_PathUnExpandEnvStringsForUser(void);
|
|
extern void func_SHAreIconsEqual(void);
|
|
extern void func_SHGetRestriction(void);
|
|
extern void func_SHLoadIndirectString(void);
|
|
extern void func_SHLoadRegUIString(void);
|
|
extern void func_SHPropertyBag(void);
|
|
extern void func_StrFormatByteSizeW(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "PathFindOnPath", func_PathFindOnPath },
|
|
{ "PathIsUNC", func_isuncpath },
|
|
{ "PathIsUNCServer", func_isuncpathserver },
|
|
{ "PathIsUNCServerShare", func_isuncpathservershare },
|
|
{ "PathUnExpandEnvStrings", func_PathUnExpandEnvStrings },
|
|
{ "PathUnExpandEnvStringsForUser", func_PathUnExpandEnvStringsForUser },
|
|
{ "SHAreIconsEqual", func_SHAreIconsEqual },
|
|
{ "SHGetRestriction", func_SHGetRestriction },
|
|
{ "SHLoadIndirectString", func_SHLoadIndirectString },
|
|
{ "SHLoadRegUIString", func_SHLoadRegUIString },
|
|
{ "SHPropertyBag", func_SHPropertyBag },
|
|
{ "StrFormatByteSizeW", func_StrFormatByteSizeW },
|
|
{ 0, 0 }
|
|
};
|