ReactOS 0.4.16-dev-1946-g52006dd
testlist.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS PathCch Library - Unit-tests
3 * LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
4 * PURPOSE: List of tests
5 * COPYRIGHT: Copyright 2025 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
6 */
7
8#define STANDALONE
9#include <apitest.h>
10
11extern void func_PathCchCompileTest(void);
12
13const struct test winetest_testlist[] =
14{
15 { "PathCchCompileTest", func_PathCchCompileTest },
16 { 0, 0 }
17};
#define test
Definition: rosglue.h:37
const struct test winetest_testlist[]
Definition: testlist.c:7
void func_PathCchCompileTest(void)