Allow specifying ROM type in file load dialog
[lsnes.git] / include / lua / internal.hpp
blobe6ae8e1e7383e331ccb3269c0b177790b1312dde
1 #ifndef _lua_int__hpp__included__
2 #define _lua_int__hpp__included__
4 #include "lua/lua.hpp"
5 #include <cstdio>
6 #include <cstdlib>
7 #include <iostream>
8 #include "library/luabase.hpp"
10 extern lua_state LS;
12 void push_keygroup_parameters(lua_state& L, keyboard_key& p);
13 extern lua_render_context* lua_render_ctx;
14 extern controller_frame* lua_input_controllerdata;
15 extern bool lua_booted_flag;
16 extern uint64_t lua_idle_hook_time;
17 extern uint64_t lua_timer_hook_time;
19 #endif