-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRTN.h
24 lines (21 loc) · 1.12 KB
/
RTN.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef C_H
#define C_H
PyObject* Python_RTN_InsertCall(PyObject* self, PyObject* args);
PyObject* Python_RTN_Name(PyObject* self, PyObject* args);
PyObject* Python_RTN_Address(PyObject* self, PyObject* args);
/*AUTO GENERATED SKELETONS*/
PyObject* Python_RTN_Valid(PyObject* self, PyObject* args);
PyObject* Python_RTN_Id(PyObject* self, PyObject* args);
PyObject* Python_RTN_Range(PyObject* self, PyObject* args);
PyObject* Python_RTN_Size(PyObject* self, PyObject* args);
PyObject* Python_RTN_IsDynamic(PyObject* self, PyObject* args);
PyObject* Python_RTN_IsSafeForProbedInsertion(PyObject* self, PyObject* args);
PyObject* Python_RTN_IsSafeForProbedReplacement(PyObject* self, PyObject* args);
PyObject* Python_RTN_FindNameByAddress(PyObject* self, PyObject* args);
PyObject* Python_RTN_FindByName(PyObject* self, PyObject* args);
PyObject* Python_RTN_Open(PyObject* self, PyObject* args);
PyObject* Python_RTN_Close(PyObject* self, PyObject* args);
PyObject* Python_RTN_InsHead(PyObject* self, PyObject* args);
PyObject* Python_RTN_InsTail(PyObject* self, PyObject* args);
PyObject* Python_RTN_NumIns(PyObject* self, PyObject* args);
#endif