lsnes rr0-β23
[lsnes.git] / include / core / mainloop.hpp
blobbb2ceda2b69452af5398e7b6b4b1cc06fb7706d3
1 #ifndef _mainloop__hpp__included__
2 #define _mainloop__hpp__included__
4 #include "rom.hpp"
5 #include "moviefile.hpp"
6 #include "movie.hpp"
8 /**
9 * \brief Emulator main loop.
11 void main_loop(struct loaded_rom& rom, struct moviefile& settings, bool load_has_to_succeed = false)
12 throw(std::bad_alloc, std::runtime_error);
13 std::vector<std::string> get_jukebox_names();
14 void update_movie_state();
16 #endif