1 /* 2 * Copyright 2009-2016, Ingo Weinhold, ingo_weinhold@gmx.de. 3 * Copyright 2011-2016, Rene Gollent, rene@gollent.com. 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef DEBUGGER_GLOBALS_H 7 #define DEBUGGER_GLOBALS_H 8 9 #include "TargetHostInterfaceRoster.h" 10 11 12 status_t debugger_global_init(TargetHostInterfaceRoster::Listener* listener); 13 14 void debugger_global_uninit(); 15 16 #endif // DEBUGGER_GLOBALS_H 17