ReactOS 0.4.15-dev-8614-gbc76250
testlist.c
Go to the documentation of this file.
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
12extern void func_DelNode(void);
13
14const struct test winetest_testlist[] =
15{
16 { "DelNode", func_DelNode },
17 { 0, 0 }
18};
#define test
Definition: rosglue.h:37
const struct test winetest_testlist[]
Definition: testlist.c:7
void func_DelNode(void)