mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
stubs for HAL kernel debugger functions
svn path=/trunk/; revision=645
This commit is contained in:
parent
d5014c3bb3
commit
4280f4f60d
1 changed files with 78 additions and 0 deletions
78
reactos/ntoskrnl/hal/x86/kdbg.c
Normal file
78
reactos/ntoskrnl/hal/x86/kdbg.c
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
/* $Id: kdbg.c,v 1.1 1999/09/05 20:54:57 ea Exp $
|
||||||
|
*
|
||||||
|
* reactos/ntoskrnl/hal/x86/kdbg.c
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* INCLUDES *****************************************************************/
|
||||||
|
|
||||||
|
#include <ntos.h>
|
||||||
|
|
||||||
|
#include <internal/debug.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* HAL.KdPortInitialize */
|
||||||
|
BOOLEAN
|
||||||
|
STDCALL
|
||||||
|
KdPortInitialize (
|
||||||
|
DWORD Unknown0,
|
||||||
|
DWORD Unknown1,
|
||||||
|
DWORD Unknown2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* HAL.KdPortGetByte */
|
||||||
|
BYTE
|
||||||
|
STDCALL
|
||||||
|
KdPortGetByte (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return (BYTE) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* HAL.KdPortPollByte */
|
||||||
|
BYTE
|
||||||
|
STDCALL
|
||||||
|
KdPortPollByte (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return (BYTE) 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HAL.KdPortPutByte */
|
||||||
|
VOID
|
||||||
|
STDCALL
|
||||||
|
KdPortPutByte (
|
||||||
|
BYTE ByteToSend
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* HAL.KdPortRestore */
|
||||||
|
VOID
|
||||||
|
STDCALL
|
||||||
|
KdPortRestore (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* HAL.KdPortSave */
|
||||||
|
VOID
|
||||||
|
STDCALL
|
||||||
|
KdPortSave (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* EOF */
|
Loading…
Reference in a new issue