mirror of
https://github.com/reactos/reactos.git
synced 2025-01-07 06:45:24 +00:00
57ce30b85f
- Implement SHPropertyBag_Delete, SHPropertyBag_WritePOINTL, SHPropertyBag_WritePOINTS, and SHPropertyBag_WriteRECTL functions. - SHPropertyBag_WriteInt is an alias to SHPropertyBag_WriteLONG. - Modify shlwapi.spec. - Modify shlwapi_undoc.h. - Add SHPropertyBag testcase to shlwapi_apitest.exe. CORE-9283
30 lines
1.1 KiB
C
30 lines
1.1 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_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 },
|
|
{ "SHLoadIndirectString", func_SHLoadIndirectString },
|
|
{ "SHLoadRegUIString", func_SHLoadRegUIString },
|
|
{ "SHPropertyBag", func_SHPropertyBag },
|
|
{ "StrFormatByteSizeW", func_StrFormatByteSizeW },
|
|
{ 0, 0 }
|
|
};
|