◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_DOSDEVIOCTL typedef struct _RXQUEUE { /* rxq */ USHORT cch; USHORT cb; } RXQUEUE; The RXQUEUE structure contains the number of characters in the queue and the size of the queue. Field Description ──────────────────────────────────────────────────────────────────────────── cch Specifies the number of characters received or to be transmitted in the device-driver queue. cb Specifies the size of the queue (in bytes). See Also ASYNC_GETINQUECOUNT, ASYNC_GETOUTQUECOUNT ♦