mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 05:22:59 +00:00
523a1a5589
svn path=/trunk/; revision=73549
18 lines
572 B
C
18 lines
572 B
C
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_isuncpath(void);
|
|
extern void func_isuncpathserver(void);
|
|
extern void func_isuncpathservershare(void);
|
|
extern void func_PathUnExpandEnvStrings(void);
|
|
extern void func_StrFormatByteSizeW(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "PathIsUNC", func_isuncpath },
|
|
{ "PathIsUNCServer", func_isuncpathserver },
|
|
{ "PathIsUNCServerShare", func_isuncpathservershare },
|
|
{ "PathUnExpandEnvStrings", func_PathUnExpandEnvStrings },
|
|
{ "StrFormatByteSizeW", func_StrFormatByteSizeW },
|
|
{ 0, 0 }
|
|
};
|