mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
IDAPython for IDA 6.95: Initial commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#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);
|
||||
Reference in New Issue
Block a user