File: caca-event.h

package info (click to toggle)
libcaca 0.99.beta17-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,548 kB
  • ctags: 3,145
  • sloc: ansic: 22,607; cs: 1,211; cpp: 1,107; objc: 836; makefile: 604; sh: 352; python: 215; ruby: 193; asm: 65
file content (17 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __CACA_EVENT_H__
#define __CACA_EVENT_H__

#include <ruby.h>

extern VALUE cEvent;
extern VALUE cEventKeyPress;
extern VALUE cEventKeyRelease;
extern VALUE cEventMouse;
extern VALUE cEventMousePress;
extern VALUE cEventMouseRelease;
extern VALUE cEventMouseMotion;
extern VALUE cEventResize;
extern VALUE cEventQuit;
extern void Init_caca_event(VALUE);

#endif