mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:36:23 +00:00
- Add IoGetDeviceAttachmentBaseRef, IoGetDiskDeviceObject and IoGetLowerDeviceObject.
svn path=/trunk/; revision=41378
This commit is contained in:
parent
24a8093b5b
commit
2023257ded
1 changed files with 26 additions and 0 deletions
|
@ -4083,6 +4083,32 @@ IoGetBaseFileSystemDeviceObject (
|
|||
IN PFILE_OBJECT FileObject
|
||||
);
|
||||
|
||||
#if (VER_PRODUCTBUILD >= 2600)
|
||||
|
||||
NTKERNELAPI
|
||||
PDEVICE_OBJECT
|
||||
NTAPI
|
||||
IoGetDeviceAttachmentBaseRef (
|
||||
IN PDEVICE_OBJECT DeviceObject
|
||||
);
|
||||
|
||||
NTKERNELAPI
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
IoGetDiskDeviceObject (
|
||||
IN PDEVICE_OBJECT FileSystemDeviceObject,
|
||||
OUT PDEVICE_OBJECT *DiskDeviceObject
|
||||
);
|
||||
|
||||
NTKERNELAPI
|
||||
PDEVICE_OBJECT
|
||||
NTAPI
|
||||
IoGetLowerDeviceObject (
|
||||
IN PDEVICE_OBJECT DeviceObject
|
||||
);
|
||||
|
||||
#endif /* (VER_PRODUCTBUILD >= 2600) */
|
||||
|
||||
NTKERNELAPI
|
||||
PEPROCESS
|
||||
NTAPI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue