mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
7 lines
141 B
C++
7 lines
141 B
C++
|
#include "swig_stub.h"
|
||
|
|
||
|
PyObject *SWIG_NewPointerObj(void *ptr, void *type, int flags)
|
||
|
{
|
||
|
return PyCObject_FromVoidPtr(ptr, NULL);
|
||
|
}
|