tolua_event.h 611 B

123456789101112131415161718192021222324
  1. /* tolua: event functions
  2. ** Support code for Lua bindings.
  3. ** Written by Waldemar Celes
  4. ** TeCGraf/PUC-Rio
  5. ** Apr 2003
  6. ** $Id: $
  7. */
  8. /* This code is free software; you can redistribute it and/or modify it.
  9. ** The software provided hereunder is on an "as is" basis, and
  10. ** the author has no obligation to provide maintenance, support, updates,
  11. ** enhancements, or modifications.
  12. */
  13. #ifndef TOLUA_EVENT_H
  14. #define TOLUA_EVENT_H
  15. #include "tolua++.h"
  16. TOLUA_API void tolua_moduleevents (lua_State* L);
  17. TOLUA_API int tolua_ismodulemetatable (lua_State* L);
  18. TOLUA_API void tolua_classevents (lua_State* L);
  19. #endif