mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
22 lines
439 B
C++
22 lines
439 B
C++
//
|
|
// Copyright (C) Microsoft. All rights reserved.
|
|
//
|
|
#ifndef _FXDEFAULTIRPHANDLER_HPP_
|
|
#define _FXDEFAULTIRPHANDLER_HPP_
|
|
|
|
class FxDefaultIrpHandler : public FxPackage {
|
|
public:
|
|
FxDefaultIrpHandler(
|
|
__in PFX_DRIVER_GLOBALS FxDriverGlobals,
|
|
__in CfxDevice* Device
|
|
);
|
|
|
|
_Must_inspect_result_
|
|
virtual
|
|
NTSTATUS
|
|
Dispatch(
|
|
__in MdIrp Irp
|
|
);
|
|
};
|
|
|
|
#endif // _FXDEFAULTIRPHANDLER_HPP_
|