mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 22:52:58 +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
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* 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
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS system libraries
|
* PROJECT: ReactOS system libraries
|
||||||
|
@ -58,7 +58,7 @@ NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
RtlCreateTimerQueue(PHANDLE TimerQueue)
|
RtlCreateTimerQueue(PHANDLE TimerQueue)
|
||||||
{
|
{
|
||||||
DPRINT1("RtlCreateTimer: stub\n");
|
DPRINT1("RtlCreateTimerQueue: stub\n");
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ RtlDeleteTimer(HANDLE TimerQueue,
|
||||||
HANDLE Timer,
|
HANDLE Timer,
|
||||||
HANDLE CompletionEvent)
|
HANDLE CompletionEvent)
|
||||||
{
|
{
|
||||||
DPRINT1("RtlCreateTimer: stub\n");
|
DPRINT1("RtlDeleteTimer: stub\n");
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ NTSTATUS
|
||||||
STDCALL
|
STDCALL
|
||||||
RtlDeleteTimerQueue(HANDLE TimerQueue)
|
RtlDeleteTimerQueue(HANDLE TimerQueue)
|
||||||
{
|
{
|
||||||
DPRINT1("RtlCreateTimer: stub\n");
|
DPRINT1("RtlDeleteTimerQueue: stub\n");
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ STDCALL
|
||||||
RtlDeleteTimerQueueEx(HANDLE TimerQueue,
|
RtlDeleteTimerQueueEx(HANDLE TimerQueue,
|
||||||
HANDLE CompletionEvent)
|
HANDLE CompletionEvent)
|
||||||
{
|
{
|
||||||
DPRINT1("RtlCreateTimer: stub\n");
|
DPRINT1("RtlDeleteTimerQueueEx: stub\n");
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ RtlUpdateTimer(HANDLE TimerQueue,
|
||||||
ULONG DueTime,
|
ULONG DueTime,
|
||||||
ULONG Period)
|
ULONG Period)
|
||||||
{
|
{
|
||||||
DPRINT1("RtlCreateTimer: stub\n");
|
DPRINT1("RtlUpdateTimer: stub\n");
|
||||||
return STATUS_NOT_IMPLEMENTED;
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue