Class: XCB::CHAR2B
- Inherits:
-
Object
- Object
- XCB::CHAR2B
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#byte1 ⇒ Object
39 40 41 42 43 44 45 |
# File 'ext/xproto.c', line 39
static VALUE
r_XCB_CHAR2B_get_byte1(VALUE r_self)
{
xcb_char2b_t *char2b;
Data_Get_Struct(r_self, xcb_char2b_t, char2b);
return INT2FIX(char2b->byte1);
}
|
#byte2 ⇒ Object
46 47 48 49 50 51 52 |
# File 'ext/xproto.c', line 46
static VALUE
r_XCB_CHAR2B_get_byte2(VALUE r_self)
{
xcb_char2b_t *char2b;
Data_Get_Struct(r_self, xcb_char2b_t, char2b);
return INT2FIX(char2b->byte2);
}
|