Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

29 linhas
799 B

  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. #ifndef __CACA_EVENT_H__
  12. #define __CACA_EVENT_H__
  13. #include <ruby.h>
  14. extern VALUE cEvent;
  15. extern VALUE cEventKeyPress;
  16. extern VALUE cEventKeyRelease;
  17. extern VALUE cEventMouse;
  18. extern VALUE cEventMousePress;
  19. extern VALUE cEventMouseRelease;
  20. extern VALUE cEventMouseMotion;
  21. extern VALUE cEventResize;
  22. extern VALUE cEventQuit;
  23. extern void Init_caca_event(VALUE);
  24. #endif