// ntddser.h
// CTL_CODE(0x001b, 0x006, METHOD_BUFFERED, FILE_ANY_ACCESS)
#define IOCTL_SERIAL_IMMEDIATE_CHAR 0x001B0018
View the official Windows Driver Kit DDI referenceNo description available.
The IOCTL_SERIAL_IMMEDIATE_CHAR request causes a specified character to be transmitted as soon as possible. The immediate character request completes immediately after any other write that might be in progress. Only one immediate character request can be pending at a time.
The AssociatedIrp.SystemBuffer member points to the UCHAR value to transmit immediately.
The Parameters.DeviceIoControl.InputBufferLength member is set to the size, in bytes, of a UCHAR.
None.
None.
If the request is successful, the Information member is set to the size, in bytes, of a UCHAR. Otherwise, Information is set to zero.
The Status member is set to one of the Generic Status Values for Serial Device Control Requests. A status of STATUS_INVALID_PARAMETER indicates that a previous immediate character request is pending.