1 /*
2  * PROJECT:     ReactOS API tests
3  * LICENSE:     GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4  * PURPOSE:     Test for advpack.dll functions
5  * COPYRIGHT:   Copyright 2023 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
6  */
7 
8 #define __ROS_LONG64__
9 #define STANDALONE
10 #include <apitest.h>
11 
12 extern void func_DelNode(void);
13 
14 const struct test winetest_testlist[] =
15 {
16     { "DelNode", func_DelNode },
17     { 0, 0 }
18 };
19