mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 07:36:21 +00:00
[WDF] Add Windows Driver Framework files
Takern from Microsoft GitHub repo:
d9c6040fe9
Licensed under MIT
This commit is contained in:
parent
545df81502
commit
8a978a179f
475 changed files with 285099 additions and 0 deletions
|
@ -0,0 +1,91 @@
|
|||
/*++
|
||||
|
||||
Copyright (c) Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
FxWmiIrpHandlerUm.cpp
|
||||
|
||||
Abstract:
|
||||
|
||||
This module implements the wmi irp handler for the driver frameworks.
|
||||
|
||||
Author:
|
||||
|
||||
|
||||
|
||||
|
||||
Environment:
|
||||
|
||||
User mode only
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
|
||||
#include "fxmin.hpp"
|
||||
#include "FxWmiIrpHandler.hpp"
|
||||
|
||||
class FxWmiIrpHandler;
|
||||
|
||||
_Must_inspect_result_
|
||||
NTSTATUS
|
||||
FxWmiIrpHandler::PostCreateDeviceInitialize(
|
||||
VOID
|
||||
)
|
||||
{
|
||||
ASSERTMSG("Not implemented for UMDF\n", FALSE);
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
VOID
|
||||
FxWmiIrpHandler::Deregister(
|
||||
VOID
|
||||
)
|
||||
{
|
||||
ASSERTMSG("Not implemented for UMDF\n", FALSE);
|
||||
}
|
||||
|
||||
_Must_inspect_result_
|
||||
NTSTATUS
|
||||
FxWmiIrpHandler::AddPowerPolicyProviderAndInstance(
|
||||
__in PWDF_WMI_PROVIDER_CONFIG /* ProviderConfig */,
|
||||
__in FxWmiInstanceInternalCallbacks* /* InstanceCallbacks */,
|
||||
__inout FxWmiInstanceInternal** /* Instance */
|
||||
)
|
||||
{
|
||||
ASSERTMSG("Not implemented for UMDF\n", FALSE);
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
_Must_inspect_result_
|
||||
NTSTATUS
|
||||
FxWmiIrpHandler::Register(
|
||||
VOID
|
||||
)
|
||||
{
|
||||
ASSERTMSG("Not implemented for UMDF\n", FALSE);
|
||||
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
VOID
|
||||
FxWmiIrpHandler::Cleanup(
|
||||
VOID
|
||||
)
|
||||
{
|
||||
ASSERTMSG("Not implemented for UMDF\n", FALSE);
|
||||
}
|
||||
|
||||
VOID
|
||||
FxWmiIrpHandler::ResetStateForPdoRestart(
|
||||
VOID
|
||||
)
|
||||
{
|
||||
ASSERTMSG("Not implemented for UMDF\n", FALSE);
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue