lsnes/generic/mainloop.hpp
2011-09-18 12:42:33 +03:00

14 lines
No EOL
293 B
C++

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