Author: pschweitzer
Date: Sun Dec 28 21:29:32 2014
New Revision: 65864
URL:
http://svn.reactos.org/svn/reactos?rev=65864&view=rev
Log:
[NTOSKRNL]
Add missing specifiers
Modified:
trunk/reactos/ntoskrnl/io/iomgr/file.c
Modified: trunk/reactos/ntoskrnl/io/iomgr/file.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/file.c?r…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/file.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/file.c [iso-8859-1] Sun Dec 28 21:29:32 2014
@@ -1318,7 +1318,7 @@
PDEVICE_OBJECT
NTAPI
-IopGetDeviceAttachmentBase(PDEVICE_OBJECT DeviceObject)
+IopGetDeviceAttachmentBase(IN PDEVICE_OBJECT DeviceObject)
{
PDEVICE_OBJECT PDO = DeviceObject;
@@ -1331,7 +1331,7 @@
PDEVICE_OBJECT
NTAPI
-IopGetDevicePDO(PDEVICE_OBJECT DeviceObject)
+IopGetDevicePDO(IN PDEVICE_OBJECT DeviceObject)
{
KIRQL OldIrql;
PDEVICE_OBJECT PDO;