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