mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 18:31:26 +00:00

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
30 lines
437 B
C++
30 lines
437 B
C++
/*++
|
|
|
|
Copyright (c) Microsoft. All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
fxobjectpch.h
|
|
|
|
Abstract:
|
|
|
|
This module contains header definitions and include files needed by all
|
|
modules in shared\object
|
|
|
|
Author:
|
|
|
|
Environment:
|
|
Both kernel and user mode
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __FX_CORE_PCH_H__
|
|
#define __FX_CORE_PCH_H__
|
|
|
|
#include "objectpriv.hpp"
|
|
#include "fxmin.hpp"
|
|
#include "fxtoobjectitf.hpp"
|
|
|
|
#endif // __FX_CORE_PCH_H__
|