mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-27 19:44:18 +01:00
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
//-------------------------------------------------------------------------
|
|
//<code(py_name)>
|
|
//</code(py_name)>
|
|
|
|
//------------------------------------------------------------------------
|
|
//<inline(py_name)>
|
|
//------------------------------------------------------------------------
|
|
PyObject *py_get_debug_names(ea_t ea1, ea_t ea2)
|
|
{
|
|
// Get debug names
|
|
ea_name_vec_t names;
|
|
PYW_GIL_CHECK_LOCKED_SCOPE();
|
|
Py_BEGIN_ALLOW_THREADS;
|
|
get_debug_names(ea1, ea2, names);
|
|
Py_END_ALLOW_THREADS;
|
|
PyObject *dict = Py_BuildValue("{}");
|
|
if (dict != NULL)
|
|
{
|
|
for (ea_name_vec_t::iterator it=names.begin();it!=names.end();++it)
|
|
{
|
|
PyDict_SetItem(dict,
|
|
Py_BuildValue(PY_FMT64, it->ea),
|
|
PyString_FromString(it->name.c_str()));
|
|
}
|
|
}
|
|
return dict;
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
inline qstring py_get_ea_name(ea_t ea, int gtn_flags=0)
|
|
{
|
|
qstring out;
|
|
get_ea_name(&out, ea, gtn_flags);
|
|
return out;
|
|
}
|
|
//------------------------------------------------------------------------
|
|
//</inline(py_name)>
|
|
//------------------------------------------------------------------------
|