mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
5cd5598ea9
Disable tests for unimplemented features
15 lines
337 B
C
15 lines
337 B
C
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_EnumObjects(void);
|
|
extern void func_EnumParentDir(void);
|
|
extern void func_IDataObject(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "EnumObjects", func_EnumObjects },
|
|
{ "EnumParentDir", func_EnumParentDir },
|
|
{ "IDataObject", func_IDataObject },
|
|
{ 0, 0 }
|
|
};
|