forget update de.rc
[reactos.git] / reactos / ntoskrnl / lpc / query.c
index d9bb618..3463047 100644 (file)
@@ -1,12 +1,11 @@
 /* $Id$
- * 
+ *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS kernel
  * FILE:            ntoskrnl/lpc/query.c
  * PURPOSE:         Communication mechanism
- * PROGRAMMER:      David Welch (welch@cwcom.net)
- * UPDATE HISTORY:
- *                  Created 22/05/98
+ *
+ * PROGRAMMERS:     David Welch (welch@cwcom.net)
  */
 
 /* INCLUDES *****************************************************************/
@@ -20,7 +19,7 @@
 /**********************************************************************
  * NAME                                                        EXPORTED
  *     NtQueryInformationPort@20
- *     
+ *
  * DESCRIPTION
  *
  * ARGUMENTS
  */
 /*EXPORTED*/ NTSTATUS STDCALL
 NtQueryInformationPort (IN     HANDLE  PortHandle,
-                       IN      CINT    PortInformationClass,   
-                       OUT     PVOID   PortInformation,    
+                       IN      PORT_INFORMATION_CLASS  PortInformationClass,
+                       OUT     PVOID   PortInformation,
                        IN      ULONG   PortInformationLength,
                        OUT     PULONG  ReturnLength)
 {
   NTSTATUS     Status;
   PEPORT               Port;
-  
+
   Status = ObReferenceObjectByHandle (PortHandle,
                                      PORT_ALL_ACCESS,   /* AccessRequired */
                                      LpcPortObjectType,