mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-30 21:14:20 +01:00
added dbg_is_loaded()
This commit is contained in:
parent
3a5063330c
commit
5b59791156
16
swig/dbg.i
16
swig/dbg.i
@ -44,6 +44,22 @@ static PyObject *py_get_manual_regions()
|
|||||||
return meminfo_vec_t_to_py(areas);
|
return meminfo_vec_t_to_py(areas);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//-------------------------------------------------------------------------
|
||||||
|
/*
|
||||||
|
#<pydoc>
|
||||||
|
def dbg_is_loaded():
|
||||||
|
"""
|
||||||
|
Checks if a debugger is loaded
|
||||||
|
@return: Boolean
|
||||||
|
"""
|
||||||
|
pass
|
||||||
|
#</pydoc>
|
||||||
|
*/
|
||||||
|
static bool dbg_is_loaded()
|
||||||
|
{
|
||||||
|
return dbg != NULL;
|
||||||
|
}
|
||||||
|
|
||||||
//-------------------------------------------------------------------------
|
//-------------------------------------------------------------------------
|
||||||
/*
|
/*
|
||||||
#<pydoc>
|
#<pydoc>
|
||||||
|
Loading…
Reference in New Issue
Block a user