Method: XCB::SCREEN#current_input_masks

Defined in:
ext/xproto.c

#current_input_masksObject



267
268
269
270
271
272
273
# File 'ext/xproto.c', line 267

static VALUE
r_XCB_SCREEN_get_current_input_masks(VALUE r_self)
{
	xcb_screen_t *screen;
	Data_Get_Struct(r_self, xcb_screen_t, screen);
	return INT2FIX(screen->current_input_masks);
}