.TH xcb_shm_completion_event_t 3 "libxcb 1.17.0" "X Version 11" "XCB Events" .ad l .SH NAME xcb_shm_completion_event_t \- Report that an XCB_SHM_PUT_IMAGE request has completed .SH SYNOPSIS .hy 0 .B #include .PP .SS Event datastructure .nf .sp typedef struct xcb_shm_completion_event_t { uint8_t \fIresponse_type\fP; uint8_t \fIpad0\fP; uint16_t \fIsequence\fP; xcb_drawable_t \fIdrawable\fP; uint16_t \fIminor_event\fP; uint8_t \fImajor_event\fP; uint8_t \fIpad1\fP; xcb_shm_seg_t \fIshmseg\fP; uint32_t \fIoffset\fP; } \fBxcb_shm_completion_event_t\fP; .fi .br .hy 1 .SH EVENT FIELDS .IP \fIresponse_type\fP 1i The type of this event, in this case \fIXCB_SHM_COMPLETION\fP. This field is also present in the \fIxcb_generic_event_t\fP and can be used to tell events apart from each other. .IP \fIsequence\fP 1i The sequence number of the last request processed by the X11 server. .IP \fIdrawable\fP 1i The drawable used in the XCB_SHM_PUT_IMAGE request. .IP \fIminor_event\fP 1i The minor opcode used in the request. Always XCB_SHM_PUT_IMAGE. .IP \fImajor_event\fP 1i The major opcode used in the request. Always the opcode of the MIT-SHM extension. .IP \fIshmseg\fP 1i The shared memory segment used in the request. .IP \fIoffset\fP 1i The offset in the shared memory segment used in the request. .SH DESCRIPTION This is generated by the X server to report that an XCB_SHM_PUT_IMAGE request has been successfully processed. .SH SEE ALSO .BR xcb_generic_event_t (3) .SH AUTHOR Generated from shm.xml. Contact xcb@lists.freedesktop.org for corrections and improvements.