mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
[SDK] Make KdRosRegisterCliCallback() return status from KdSystemDebugControl().
This commit is contained in:
parent
c5a35ecd37
commit
de88611590
1 changed files with 2 additions and 2 deletions
|
@ -47,11 +47,11 @@ KdRosDumpStackFrames(
|
||||||
|
|
||||||
#if defined(KDBG)
|
#if defined(KDBG)
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
VOID
|
ULONG
|
||||||
KdRosRegisterCliCallback(
|
KdRosRegisterCliCallback(
|
||||||
PVOID Callback)
|
PVOID Callback)
|
||||||
{
|
{
|
||||||
KdSystemDebugControl('RbdK', Callback, FALSE, 0, 0, 0, 0);
|
return KdSystemDebugControl('RbdK', Callback, FALSE, 0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
FORCEINLINE
|
FORCEINLINE
|
||||||
|
|
Loading…
Reference in a new issue