git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1320 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
23 lines
421 B
C++
23 lines
421 B
C++
#ifndef __FAIL_BOCHS_GLOBALS_HPP__
|
|
#define __FAIL_BOCHS_GLOBALS_HPP__
|
|
|
|
#include <string>
|
|
|
|
#include "config.h"
|
|
|
|
namespace fail {
|
|
|
|
#ifdef DANCEOS_RESTORE
|
|
extern bx_bool restore_bochs_request;
|
|
extern bx_bool save_bochs_request;
|
|
extern std::string sr_path;
|
|
#endif
|
|
|
|
extern bx_bool reboot_bochs_request;
|
|
extern bx_bool interrupt_injection_request;
|
|
extern int interrupt_to_fire;
|
|
|
|
}
|
|
|
|
#endif // __FAIL_BOCHS_GLOBALS_HPP__
|