Files

18 lines
417 B
C

/*
* PROJECT: ReactOS API tests
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
* PURPOSE: Test for advpack.dll functions
* COPYRIGHT: Copyright 2023 Katayama Hirofumi MZ <[email protected]>
*/
#define STANDALONE
#include <apitest.h>
extern void func_DelNode(void);
const struct test winetest_testlist[] =
{
{ "DelNode", func_DelNode },
{ 0, 0 }
};