| Revision 4369,
799 bytes
checked in by sam, 3 years ago
(diff) |
|
Add the copyright unit test and update copyright information everywhere.
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * libcaca Ruby bindings |
|---|
| 3 | * Copyright (c) 2007-2010 Pascal Terjan <pterjan@linuxfr.org> |
|---|
| 4 | * |
|---|
| 5 | * This library is free software. It comes without any warranty, to |
|---|
| 6 | * the extent permitted by applicable law. You can redistribute it |
|---|
| 7 | * and/or modify it under the terms of the Do What The Fuck You Want |
|---|
| 8 | * To Public License, Version 2, as published by Sam Hocevar. See |
|---|
| 9 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
|---|
| 10 | */ |
|---|
| 11 | |
|---|
| 12 | #ifndef __CACA_EVENT_H__ |
|---|
| 13 | #define __CACA_EVENT_H__ |
|---|
| 14 | |
|---|
| 15 | #include <ruby.h> |
|---|
| 16 | |
|---|
| 17 | extern VALUE cEvent; |
|---|
| 18 | extern VALUE cEventKeyPress; |
|---|
| 19 | extern VALUE cEventKeyRelease; |
|---|
| 20 | extern VALUE cEventMouse; |
|---|
| 21 | extern VALUE cEventMousePress; |
|---|
| 22 | extern VALUE cEventMouseRelease; |
|---|
| 23 | extern VALUE cEventMouseMotion; |
|---|
| 24 | extern VALUE cEventResize; |
|---|
| 25 | extern VALUE cEventQuit; |
|---|
| 26 | extern void Init_caca_event(VALUE); |
|---|
| 27 | |
|---|
| 28 | #endif |
|---|
Note: See
TracBrowser
for help on using the repository browser.