mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
Implement IoInvalidateDeviceRelations
svn path=/trunk/; revision=15201
This commit is contained in:
parent
fa832dae41
commit
c32fd82fbf
1 changed files with 9 additions and 9 deletions
|
@ -27,8 +27,15 @@ PDRIVER_OBJECT IopRootDriverObject;
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
PDEVICE_NODE FASTCALL
|
||||||
|
IopGetDeviceNode(
|
||||||
|
PDEVICE_OBJECT DeviceObject)
|
||||||
|
{
|
||||||
|
return DeviceObject->DeviceObjectExtension->DeviceNode;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
VOID
|
VOID
|
||||||
STDCALL
|
STDCALL
|
||||||
|
@ -36,14 +43,7 @@ IoInvalidateDeviceRelations(
|
||||||
IN PDEVICE_OBJECT DeviceObject,
|
IN PDEVICE_OBJECT DeviceObject,
|
||||||
IN DEVICE_RELATION_TYPE Type)
|
IN DEVICE_RELATION_TYPE Type)
|
||||||
{
|
{
|
||||||
CHECKPOINT1;
|
IopInvalidateDeviceRelations(IopGetDeviceNode(DeviceObject), Type);
|
||||||
}
|
|
||||||
|
|
||||||
PDEVICE_NODE FASTCALL
|
|
||||||
IopGetDeviceNode(
|
|
||||||
PDEVICE_OBJECT DeviceObject)
|
|
||||||
{
|
|
||||||
return DeviceObject->DeviceObjectExtension->DeviceNode;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue