Files
Hermès Bélusca-Maïto 28f733a9a4 [UNITTESTS][PATHCCH] Add unit compilation-tests for the pathcch library (#8085)
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).
2025-06-24 16:48:04 +02:00

27 lines
523 B
C

/*
* PROJECT: ReactOS PathCch Library - Unit-tests
* LICENSE: LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
* PURPOSE: Precompiled header
* COPYRIGHT: Copyright 2025 Hermès Bélusca-Maïto <[email protected]>
*/
#pragma once
#include <apitest.h>
/* C Headers */
#include <stdio.h>
/* PSDK Headers */
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <windef.h>
#include <winbase.h>
#include <strsafe.h>
#include <pathcch.h>
/* EOF */