Class: Xevent

Inherits:
Object
  • Object
show all
Defined in:
ext/xevent/xevent.c

Instance Method Summary collapse

Instance Method Details

#do(cmd) ⇒ Object

void xevent_rb_new(VALUE class)

xevent_init();



562
563
564
565
566
# File 'ext/xevent/xevent.c', line 562

VALUE xevent_rb_do(VALUE self, VALUE cmd) {
    xevent_init();
    xevent(RSTRING(cmd)->ptr);
    return self;
}