mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
1f377076d7
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
25 lines
456 B
C++
25 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__
|