reactos/sdk/lib/drivers/wdf/shared/support/fxsupportpch.hpp
Victor Perevertkin 1f377076d7
[WDF] Fix KMDF so it can compile with ReactOS SDK
Not all files are included, but these are necessary to compile cdrom driver.
So far it can only be statically linked with drivers, a proper
implementation requires wdfldr helper driver
2020-11-03 00:06:27 +03:00

26 lines
456 B
C++

/*++
Copyright (c) Microsoft. All rights reserved.
Module Name:
fxsupportpch.h
Abstract:
This module contains header definitions and include files needed by all
modules in fx\support
--*/
#ifndef __FX_SUPPORT_PCH_HPP__
#define __FX_SUPPORT_PCH_HPP__
#if FX_CORE_MODE == FX_CORE_USER_MODE
#include "um/fxsupportpchum.hpp"
#elif FX_CORE_MODE == FX_CORE_KERNEL_MODE
#include "km/fxsupportpchkm.hpp"
#endif
#endif // __FX_SUPPORT_PCH_HPP__