mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
fixed debug output
svn path=/trunk/; revision=10031
This commit is contained in:
parent
76cd746a0f
commit
aa11660dd0
1 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue