lsnes/mainloop.hpp
Ilari Liusvaara c932df0faa lsnes rr0-β0
The first release for public testing.
2011-09-13 17:50:18 +03:00

18 lines
No EOL
388 B
C++

#ifndef _mainloop__hpp__included__
#define _mainloop__hpp__included__
#include "window.hpp"
#include "rom.hpp"
#include "moviefile.hpp"
#include "movie.hpp"
/**
* \brief Emulator main loop.
*/
void main_loop(window* _win, struct loaded_rom& rom, struct moviefile& settings) throw(std::bad_alloc,
std::runtime_error);
std::vector<char>& get_host_memory();
movie& get_movie();
#endif