mirror of
https://github.com/reactos/reactos.git
synced 2025-07-26 02:24:19 +00:00
DBG Stubs Added.
svn path=/trunk/; revision=9819
This commit is contained in:
parent
ba71f37690
commit
f737c1e98a
1 changed files with 43 additions and 0 deletions
|
@ -35,6 +35,49 @@
|
||||||
|
|
||||||
/* FUNCTIONS *****************************************************************/
|
/* FUNCTIONS *****************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
ULONG
|
||||||
|
__cdecl
|
||||||
|
DbgPrintReturnControlC(
|
||||||
|
PCH Format,
|
||||||
|
...
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
STDCALL
|
||||||
|
NTSTATUS
|
||||||
|
DbgQueryDebugFilterState(
|
||||||
|
IN ULONG ComponentId,
|
||||||
|
IN ULONG Level
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
STDCALL
|
||||||
|
NTSTATUS
|
||||||
|
DbgSetDebugFilterState(
|
||||||
|
IN ULONG ComponentId,
|
||||||
|
IN ULONG Level,
|
||||||
|
IN BOOLEAN State
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED;
|
||||||
|
return STATUS_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
NTSTATUS STDCALL
|
NTSTATUS STDCALL
|
||||||
NtSystemDebugControl(DEBUG_CONTROL_CODE ControlCode,
|
NtSystemDebugControl(DEBUG_CONTROL_CODE ControlCode,
|
||||||
PVOID InputBuffer,
|
PVOID InputBuffer,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue