mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
CORE-12686 Test the following compilation scenarii: - using the `pathcch_static` library (function implementations statically linked into the test); - using the `pathcch_kernelbase` library (linking directly to kernelbase.dll); - using the `pathcch` MS PSDK-compatible library (linking to the api-ms-win-core-path-l1-1-0.dll APISET dll).
22 lines
477 B
C
22 lines
477 B
C
/*
|
|
* PROJECT: ReactOS PathCch Library - Unit-tests
|
|
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
|
|
* PURPOSE: C compilation tests
|
|
* COPYRIGHT: Copyright 2025 Hermès Bélusca-Maïto <[email protected]>
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
|
|
#include "pathcch_compile.inc"
|
|
|
|
// See pathcch_compile.cpp
|
|
extern void test_CPP_PathCch(void);
|
|
|
|
START_TEST(PathCchCompileTest)
|
|
{
|
|
test_C_PathCch();
|
|
test_CPP_PathCch();
|
|
}
|
|
|
|
/* EOF */
|