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
38 lines
407 B
C++
38 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"
|