File tree 1 file changed +2
-0
lines changed
1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1649,6 +1649,7 @@ TPythonInterface=class(TDynamicDll)
1649
1649
PyLong_FromLongLong:function(val:Int64): PPyObject; cdecl;
1650
1650
PyLong_FromUnsignedLongLong:function(val:UInt64) : PPyObject; cdecl;
1651
1651
PyLong_AsLongLong:function(ob:PPyObject): Int64; cdecl;
1652
+ PyLong_AsVoidPtr:function(ob:PPyObject): Pointer;
1652
1653
PyLong_FromVoidPtr:function(p: Pointer): PPyObject; cdecl;
1653
1654
PyMapping_Check:function (ob:PPyObject):integer; cdecl;
1654
1655
PyMapping_GetItemString:function (ob:PPyObject;key:PAnsiChar):PPyObject; cdecl;
@@ -3984,6 +3985,7 @@ procedure TPythonInterface.MapDll;
3984
3985
PyLong_FromLongLong := Import (' PyLong_FromLongLong' );
3985
3986
PyLong_FromUnsignedLongLong := Import (' PyLong_FromUnsignedLongLong' );
3986
3987
PyLong_AsLongLong := Import (' PyLong_AsLongLong' );
3988
+ PyLong_AsVoidPtr := Import (' PyLong_AsVoidPtr' );
3987
3989
PyLong_FromVoidPtr := Import (' PyLong_FromVoidPtr' );
3988
3990
PyMapping_Check := Import (' PyMapping_Check' );
3989
3991
PyMapping_GetItemString := Import (' PyMapping_GetItemString' );
You can’t perform that action at this time.
0 commit comments