2017-01-13 00:06:12 +00:00
|
|
|
#define STANDALONE
|
|
|
|
#include <apitest.h>
|
|
|
|
|
|
|
|
extern void func_isuncpath(void);
|
2017-01-13 21:55:25 +00:00
|
|
|
extern void func_isuncpathserver(void);
|
|
|
|
extern void func_isuncpathservershare(void);
|
2017-01-13 14:51:25 +00:00
|
|
|
extern void func_PathUnExpandEnvStrings(void);
|
2017-01-15 00:04:16 +00:00
|
|
|
extern void func_StrFormatByteSizeW(void);
|
2017-01-13 00:06:12 +00:00
|
|
|
|
|
|
|
const struct test winetest_testlist[] =
|
|
|
|
{
|
|
|
|
{ "PathIsUNC", func_isuncpath },
|
2017-01-13 21:55:25 +00:00
|
|
|
{ "PathIsUNCServer", func_isuncpathserver },
|
|
|
|
{ "PathIsUNCServerShare", func_isuncpathservershare },
|
2017-01-13 14:51:25 +00:00
|
|
|
{ "PathUnExpandEnvStrings", func_PathUnExpandEnvStrings },
|
2017-01-15 00:04:16 +00:00
|
|
|
{ "StrFormatByteSizeW", func_StrFormatByteSizeW },
|
2017-01-13 00:06:12 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|