mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
13 lines
275 B
C
13 lines
275 B
C
|
#define STANDALONE
|
||
|
#include <apitest.h>
|
||
|
|
||
|
extern void func_SfcGetFiles(void);
|
||
|
extern void func_SfcIsFileProtected(void);
|
||
|
|
||
|
const struct test winetest_testlist[] =
|
||
|
{
|
||
|
{ "SfcGetFiles", func_SfcGetFiles },
|
||
|
{ "SfcIsFileProtected", func_SfcIsFileProtected },
|
||
|
{ 0, 0 }
|
||
|
};
|