- Silence TCPIP.
[reactos.git] / reactos / ntoskrnl / lpc / queue.c
index 8c17296..971e108 100644 (file)
@@ -1,21 +1,16 @@
-/* $Id: queue.c,v 1.5 2001/12/02 23:34:42 dwelch Exp $
- * 
+/* $Id$
+ *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS kernel
  * FILE:            ntoskrnl/lpc/queue.c
  * PURPOSE:         Communication mechanism
- * PROGRAMMER:      David Welch (welch@cwcom.net)
- * UPDATE HISTORY:
- *                  Created 22/05/98
+ *
+ * PROGRAMMERS:     David Welch (welch@cwcom.net)
  */
 
 /* INCLUDES *****************************************************************/
 
-#include <ddk/ntddk.h>
-#include <internal/ob.h>
-#include <internal/port.h>
-#include <internal/dbg.h>
-
+#include <ntoskrnl.h>
 #define NDEBUG
 #include <internal/debug.h>
 
@@ -44,7 +39,7 @@ EiDequeueMessagePort (IN OUT  PEPORT  Port)
 {
   PQUEUEDMESSAGE       Message;
   PLIST_ENTRY  entry;
-  
+
   if (IsListEmpty(&Port->QueueListHead))
     {
       return(NULL);
@@ -52,7 +47,7 @@ EiDequeueMessagePort (IN OUT  PEPORT  Port)
   entry = RemoveHeadList (&Port->QueueListHead);
   Message = CONTAINING_RECORD (entry, QUEUEDMESSAGE, QueueListEntry);
   Port->QueueLength--;
-   
+
   return (Message);
 }
 
@@ -72,7 +67,7 @@ EiDequeueConnectMessagePort (IN OUT   PEPORT  Port)
 {
   PQUEUEDMESSAGE       Message;
   PLIST_ENTRY  entry;
-  
+
   if (IsListEmpty(&Port->ConnectQueueListHead))
     {
       return(NULL);
@@ -80,7 +75,7 @@ EiDequeueConnectMessagePort (IN OUT   PEPORT  Port)
   entry = RemoveHeadList (&Port->ConnectQueueListHead);
   Message = CONTAINING_RECORD (entry, QUEUEDMESSAGE, QueueListEntry);
   Port->ConnectQueueLength--;
-  
+
   return (Message);
 }