mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
f4b7087a0e
Preparation for advpack!DelNodeA/W functions implementation. CORE-13275, ROSTESTS-276
18 lines
440 B
C
18 lines
440 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 <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#define __ROS_LONG64__
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_DelNode(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "DelNode", func_DelNode },
|
|
{ 0, 0 }
|
|
};
|