mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
1b27b462ec
svn path=/trunk/; revision=74984
20 lines
658 B
C
20 lines
658 B
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_StrFormatByteSizeW(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "PathFindOnPath", func_PathFindOnPath },
|
|
{ "PathIsUNC", func_isuncpath },
|
|
{ "PathIsUNCServer", func_isuncpathserver },
|
|
{ "PathIsUNCServerShare", func_isuncpathservershare },
|
|
{ "PathUnExpandEnvStrings", func_PathUnExpandEnvStrings },
|
|
{ "StrFormatByteSizeW", func_StrFormatByteSizeW },
|
|
{ 0, 0 }
|
|
};
|