2020-09-24 20:51:15 +00:00
|
|
|
/*++
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2020-10-16 03:30:51 +00:00
|
|
|
#include "fxmin.hpp"
|
2020-09-24 20:51:15 +00:00
|
|
|
|
|
|
|
#if (FX_CORE_MODE == FX_CORE_USER_MODE)
|
|
|
|
#include "wdmdefs.h"
|
2020-10-16 03:30:51 +00:00
|
|
|
#include "fxirpum.hpp"
|
2020-09-24 20:51:15 +00:00
|
|
|
#else
|
2020-10-16 03:30:51 +00:00
|
|
|
#include "fxirpkm.hpp"
|
2020-09-24 20:51:15 +00:00
|
|
|
#endif
|
|
|
|
|
2020-10-16 03:30:51 +00:00
|
|
|
#include "fxirp.hpp"
|