mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
7 lines
135 B
C++
7 lines
135 B
C++
#include "swig_stub.h"
|
|
|
|
PyObject *SWIG_NewPointerObj(void *ptr, void *type, int flags)
|
|
{
|
|
return PyCObject_FromVoidPtr(ptr, NULL);
|
|
}
|