lsnes/include/lsnes.hpp
Ilari Liusvaara 39fe80bdfc Refactor bsnes core version handling
This is part of work to split off the emulator core.
2012-03-11 21:48:12 +02:00

19 lines
405 B
C++

#ifndef lsnes__hpp__included__
#define lsnes__hpp__included__
#include <iostream>
#define STILL_HERE do { std::cerr << "Still here at file " << __FILE__ << " line " << __LINE__ << "." << std::endl; } \
while(0)
#define DEBUGGER
#ifdef BSNES_IS_COMPAT
#define PROFILE_COMPATIBILITY
#else
#define PROFILE_ACCURACY
#endif
extern std::string lsnes_version;
extern std::string lsnes_git_revision;
#endif