// uart.h
UART_SET_BAUD UartSetBaud;
BOOLEAN UartSetBaud(
[_Inout_] PCPPORT Port,
ULONG Rate
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
Changes the baud rate of the UART hardware.
Port [_Inout_]A pointer to a _CPPORT structure that contains the address of the port object that describes the UART hardware.
Rate:The baud rate to set in bits per second.
Returns TRUE if the baud rate was programmed, FALSE otherwise.
//Declaration
UART_SET_BAUD UartSetBaud;
// Definition
BOOLEAN UartSetBaud
(
PCPPORT Port
ULONG Rate
)
{...}
Register your implementation of this callback function by setting the appropriate member of UART_HARDWARE_DRIVER.