[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:
Hermès Bélusca-Maïto 2013-05-05 19:36:05 +00:00
parent f5e22351fb
commit d34fd5880d
4 changed files with 19 additions and 16 deletions

View file

@ -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

View file

@ -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

View file

@ -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)

View file

@ -39,10 +39,12 @@ KdPortInitializeEx(
ULONG Unknown2
);
#if 0
BOOLEAN
NTAPI
KdPortGetByte(
PUCHAR ByteReceived);
#endif
BOOLEAN
NTAPI