lua_Platform.h 306 B

12345678910111213141516
  1. #ifndef LUA_PLATFORM_H_
  2. #define LUA_PLATFORM_H_
  3. namespace gameplay
  4. {
  5. // Lua bindings for Platform.
  6. int lua_Platform__gc(lua_State* state);
  7. int lua_Platform_enterMessagePump(lua_State* state);
  8. int lua_Platform_static_swapBuffers(lua_State* state);
  9. void luaRegister_Platform();
  10. }
  11. #endif