ReactOS 0.4.16-dev-197-g92996da
testlist.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS API Tests
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: Tests for version.dll
5 * COPYRIGHT: Copyright 2024 Timo Kreuzer <timo.kreuzer@reactos.org>
6 */
7
8#define STANDALONE
9#include <apitest.h>
10
11extern void func_VerQueryValue(void);
12
13const struct test winetest_testlist[] =
14{
15 { "VerQueryValue", func_VerQueryValue },
16
17 { 0, 0 }
18};
#define test
Definition: rosglue.h:37
const struct test winetest_testlist[]
Definition: testlist.c:7
void func_VerQueryValue(void)