mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 08:20:27 +00:00
28 lines
602 B
C
28 lines
602 B
C
/*
|
|
* PROJECT: ReactOS API Tests
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Precompiled header
|
|
* COPYRIGHT: Copyright 2019 Pierre Schweitzer <pierre@reactos.org>
|
|
* Copyright 2025 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#define WIN32_NO_STATUS
|
|
#include <apitest.h>
|
|
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/iofuncs.h>
|
|
#include <ndk/rtlfuncs.h>
|
|
|
|
#include <mountmgr.h>
|
|
#include <strsafe.h>
|
|
|
|
/* utils.c */
|
|
|
|
LPCSTR wine_dbgstr_us(const UNICODE_STRING *us);
|
|
|
|
HANDLE
|
|
GetMountMgrHandle(VOID);
|
|
|
|
/* EOF */
|