// uart.h
UART_HARDWARE_READ_ULONG64 UartHardwareReadUlong64;
ULONG64 UartHardwareReadUlong64(
PULONG64 Address
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Reads a ULONG64 value from the specified port address.
AddressA pointer to the register address, which must be a mapped range in memory space.
Returns ULONG64 that is read from the specified register address.
//Declaration
UART_HARDWARE_READ_ULONG64 UartHardwareReadUlong64;
// Definition
ULONG64 UartHardwareReadUlong64
(
PULONG64 Address
)
{...}
Register your implementation of this callback function by setting the ReadRegister64 member of the _UART_HARDWARE_ACCESS structure.