- Silence TCPIP.
[reactos.git] / reactos / ntoskrnl / lpc / queue.c
index 5674be3..971e108 100644 (file)
@@ -1,24 +1,20 @@
-/* $Id: queue.c,v 1.4 2001/11/25 15:21:10 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>
 
+/* FUNCTIONS *****************************************************************/
 
 VOID STDCALL
 EiEnqueueMessagePort (IN OUT   PEPORT          Port,
@@ -43,7 +39,7 @@ EiDequeueMessagePort (IN OUT  PEPORT  Port)
 {
   PQUEUEDMESSAGE       Message;
   PLIST_ENTRY  entry;
-  
+
   if (IsListEmpty(&Port->QueueListHead))
     {
       return(NULL);
@@ -51,7 +47,7 @@ EiDequeueMessagePort (IN OUT  PEPORT  Port)
   entry = RemoveHeadList (&Port->QueueListHead);
   Message = CONTAINING_RECORD (entry, QUEUEDMESSAGE, QueueListEntry);
   Port->QueueLength--;
-   
+
   return (Message);
 }
 
@@ -71,7 +67,7 @@ EiDequeueConnectMessagePort (IN OUT   PEPORT  Port)
 {
   PQUEUEDMESSAGE       Message;
   PLIST_ENTRY  entry;
-  
+
   if (IsListEmpty(&Port->ConnectQueueListHead))
     {
       return(NULL);
@@ -79,7 +75,7 @@ EiDequeueConnectMessagePort (IN OUT   PEPORT  Port)
   entry = RemoveHeadList (&Port->ConnectQueueListHead);
   Message = CONTAINING_RECORD (entry, QUEUEDMESSAGE, QueueListEntry);
   Port->ConnectQueueLength--;
-  
+
   return (Message);
 }