mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
[KDROSDBG]
Remove further legacy exports (the aim is to obtain at least the same exports as kdcom). svn path=/branches/kd++/; revision=58950
This commit is contained in:
@@ -113,6 +113,7 @@ KdPortGetByteEx(IN PKD_PORT_INFORMATION PortInformation,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
#if 0
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
KdPortGetByte(OUT PUCHAR ByteReceived)
|
||||
@@ -142,6 +143,7 @@ KdPortPollByte(OUT PUCHAR ByteReceived)
|
||||
//
|
||||
return KdPortPollByteEx(&DefaultPort, ByteReceived);
|
||||
}
|
||||
#endif
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
|
||||
@@ -268,18 +268,6 @@ KdPortInitializeEx(
|
||||
}
|
||||
|
||||
|
||||
/* HAL.KdPortGetByte */
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
KdPortGetByte(
|
||||
OUT PUCHAR ByteReceived)
|
||||
{
|
||||
if (!PortInitialized)
|
||||
return FALSE;
|
||||
return KdPortGetByteEx(&DefaultPort, ByteReceived);
|
||||
}
|
||||
|
||||
|
||||
/* HAL.KdPortGetByteEx ; ReactOS-specific */
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
@@ -298,6 +286,17 @@ KdPortGetByteEx(
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
#if 0
|
||||
/* HAL.KdPortGetByte */
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
KdPortGetByte(
|
||||
OUT PUCHAR ByteReceived)
|
||||
{
|
||||
if (!PortInitialized)
|
||||
return FALSE;
|
||||
return KdPortGetByteEx(&DefaultPort, ByteReceived);
|
||||
}
|
||||
|
||||
/* HAL.KdPortPollByte */
|
||||
BOOLEAN
|
||||
@@ -327,7 +326,7 @@ KdPortPollByteEx(
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
/* HAL.KdPortPutByte */
|
||||
VOID
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
; Old KD
|
||||
@ stdcall KdPortGetByte(ptr)
|
||||
;;@ stdcall KdPortGetByte(ptr)
|
||||
@ stdcall KdPortGetByteEx(ptr ptr)
|
||||
@ stdcall KdPortInitialize(ptr long long)
|
||||
@ stdcall KdPortInitializeEx(ptr long long)
|
||||
@ stdcall KdPortPollByte(ptr)
|
||||
@ stdcall KdPortPollByteEx(ptr ptr)
|
||||
;;@ stdcall KdPortPollByte(ptr)
|
||||
;;@ stdcall KdPortPollByteEx(ptr ptr)
|
||||
@ stdcall KdPortPutByte(long)
|
||||
@ stdcall KdPortPutByteEx(ptr long)
|
||||
|
||||
|
||||
@@ -39,10 +39,12 @@ KdPortInitializeEx(
|
||||
ULONG Unknown2
|
||||
);
|
||||
|
||||
#if 0
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
KdPortGetByte(
|
||||
PUCHAR ByteReceived);
|
||||
#endif
|
||||
|
||||
BOOLEAN
|
||||
NTAPI
|
||||
|
||||
Reference in New Issue
Block a user