UART_HARDWARE_WRITE_INDEXED_UCHAR - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// uart.h

UART_HARDWARE_WRITE_INDEXED_UCHAR UartHardwareWriteIndexedUchar;

VOID UartHardwareWriteIndexedUchar(
  [_In_] PCPPORT Port,
         const UCHAR Index,
         const UCHAR Value
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-uart-uart_hardware_write_indexed_uchar)

UART_HARDWARE_WRITE_INDEXED_UCHAR callback function

Description

Implemented by the client driver to ...

Parameters

Port [_In_]

A pointer to a _CPPORT structure that was received during port initialization.

Index

A zero-based index for the port.

Value

Specifies a byte to be written to the register.

Prototype

//Declaration

UART_HARDWARE_WRITE_INDEXED_UCHAR UartHardwareWriteIndexedUchar;

// Definition

VOID UartHardwareWriteIndexedUchar
(
    PCPPORT Port
     const UCHAR Index
     const UCHAR Value
)
{...}

Remarks

Register your implementation of this callback function by setting the appropriate member of the _CPPORT structure.

See also

uart.h