mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
19 lines
535 B
C++
19 lines
535 B
C++
#include "py_nalt.hpp"
|
|
|
|
//-------------------------------------------------------------------------
|
|
static PyObject *ex_get_switch_info_ex(PyObject *self, PyObject *args)
|
|
{
|
|
pyul_t ea;
|
|
if ( !PyArg_ParseTuple(args, PY_FMT64, &ea) )
|
|
return NULL;
|
|
return py_get_switch_info_ex(ea_t(ea));
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
static PyMethodDef py_methods_nalt[] =
|
|
{
|
|
{"get_switch_info_ex", ex_get_switch_info_ex, METH_VARARGS, ""},
|
|
{NULL, NULL, 0, NULL}
|
|
};
|
|
DRIVER_INIT_METHODS(nalt);
|