Beispiel #1
0
VOID
NTAPI
KdpSendByte(IN UCHAR Byte)
{
    /* Send the byte */
    CpPutByte(&KdDebugComPort, Byte);
}
Beispiel #2
0
VOID
NTAPI
KdPortPutByteEx(
    IN PCPPORT PortInformation,
    IN UCHAR ByteToSend)
{
    CpPutByte(PortInformation, ByteToSend);
}
Beispiel #3
0
VOID
NTAPI
InbvPortPutByte(IN ULONG   PortId,
                IN BOOLEAN Output)
{
    /* Send the byte */
    CpPutByte(&Port[PortId], Output);
}
Beispiel #4
0
VOID
WinLdrPortPutByte(IN ULONG PortId,
    			  IN UCHAR Data)
{
    CpPutByte(&Port[PortId], Data);
}
Beispiel #5
0
//
// wrapper put byte
//
VOID BlPortPutByte(__in ULONG DeviceId,__in UCHAR Value)
{
	CpPutByte(Port + DeviceId,Value);
}
Beispiel #6
0
VOID
WinLdrPortPutByte(IN ULONG PortId,
                  IN UCHAR Byte)
{
    CpPutByte(&Port[PortId], Byte);
}