fixed debug output
authorThomas Bluemel <thomas@reactsoft.com>
Thu, 8 Jul 2004 00:48:12 +0000 (00:48 +0000)
committerThomas Bluemel <thomas@reactsoft.com>
Thu, 8 Jul 2004 00:48:12 +0000 (00:48 +0000)
svn path=/trunk/; revision=10031

reactos/lib/ntdll/rtl/timerqueue.c

index 74875dc..91ffc39 100644 (file)
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: timerqueue.c,v 1.1 2004/07/08 00:40:31 weiden Exp $
+/* $Id: timerqueue.c,v 1.2 2004/07/08 00:48:12 weiden Exp $
  *
  * COPYRIGHT:         See COPYING in the top level directory
  * PROJECT:           ReactOS system libraries
@@ -58,7 +58,7 @@ NTSTATUS
 STDCALL
 RtlCreateTimerQueue(PHANDLE TimerQueue)
 {
-  DPRINT1("RtlCreateTimer: stub\n");
+  DPRINT1("RtlCreateTimerQueue: stub\n");
   return STATUS_NOT_IMPLEMENTED;
 }
 
@@ -72,7 +72,7 @@ RtlDeleteTimer(HANDLE TimerQueue,
                HANDLE Timer,
               HANDLE CompletionEvent)
 {
-  DPRINT1("RtlCreateTimer: stub\n");
+  DPRINT1("RtlDeleteTimer: stub\n");
   return STATUS_NOT_IMPLEMENTED;
 }
 
@@ -84,7 +84,7 @@ NTSTATUS
 STDCALL
 RtlDeleteTimerQueue(HANDLE TimerQueue)
 {
-  DPRINT1("RtlCreateTimer: stub\n");
+  DPRINT1("RtlDeleteTimerQueue: stub\n");
   return STATUS_NOT_IMPLEMENTED;
 }
 
@@ -97,7 +97,7 @@ STDCALL
 RtlDeleteTimerQueueEx(HANDLE TimerQueue,
                       HANDLE CompletionEvent)
 {
-  DPRINT1("RtlCreateTimer: stub\n");
+  DPRINT1("RtlDeleteTimerQueueEx: stub\n");
   return STATUS_NOT_IMPLEMENTED;
 }
 
@@ -112,7 +112,7 @@ RtlUpdateTimer(HANDLE TimerQueue,
               ULONG DueTime,
               ULONG Period)
 {
-  DPRINT1("RtlCreateTimer: stub\n");
+  DPRINT1("RtlUpdateTimer: stub\n");
   return STATUS_NOT_IMPLEMENTED;
 }