// ntddser.h
// CTL_CODE(0x001b, 0x014, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_SERIAL_GET_BAUD_RATE 0x001B0050
View the official Windows Driver Kit DDI referenceNo description available.
The IOCTL_SERIAL_GET_BAUD_RATE request returns the baud rate at which the serial port is currently configured to transmit and receive data.
To set the baud rate, a client can use an IOCTL_SERIAL_SET_BAUD_RATE request.
None.
None.
The AssociatedIrp.SystemBuffer member points to a client-allocated SERIAL_BAUD_RATE structure that the serial controller driver uses to output the baud rate information.
The Parameters.DeviceIoControl.OutputBufferLength member is set to the size in bytes of a SERIAL_BAUD_RATE structure.
If the request is successful, the Information member is set to the size in bytes of a SERIAL_BAUD_RATE structure. Otherwise, the Information member is set to zero.
The Status member is set to one of the Generic Status Values for Serial Device Control Requests.