reactos/sdk/lib/drivers/wdf/shared/irphandlers/irphandlerspriv.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

39 lines
407 B
C++

/*++
Copyright (c) Microsoft Corporation
Module Name:
irphandlerspriv.hpp
Abstract:
Private header for irphandlers.
Author:
Environment:
Both kernel and user mode
Revision History:
--*/
extern "C" {
#include "mx.h"
}
#include "fxmin.hpp"
#if (FX_CORE_MODE == FX_CORE_USER_MODE)
#include "wdmdefs.h"
#include "fxirpum.hpp"
#else
#include "fxirpkm.hpp"
#endif
#include "fxirp.hpp"