mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
18 lines
417 B
C
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 }
|
|
};
|