Mercurial > pub > dyncall > bindings
diff python/pydc/pydc.py @ 33:ba47a3d709d7
- pydc: added support to get libhandle's path
author | Tassilo Philipp |
---|---|
date | Sat, 11 Apr 2020 20:00:25 +0200 |
parents | 0cfcc391201f |
children |
line wrap: on
line diff
--- a/python/pydc/pydc.py Sat Apr 11 18:02:33 2020 +0200 +++ b/python/pydc/pydc.py Sat Apr 11 20:00:25 2020 +0200 @@ -9,6 +9,9 @@ def free(libhandle): pydcext.free(libhandle) +def get_path(libhandle): + return pydcext.get_path(libhandle) + def call(funcptr,signature,*arguments): return pydcext.call(funcptr,signature,arguments)