annotate python/pydc/pydc.py @ 6:80273969f043
- ruby binding path cleanup, previous version required bindings and dyncall be checked out in same parent directory
author |
cslag |
date |
Sat, 26 Mar 2016 00:12:40 +0100 |
parents |
0cfcc391201f |
children |
ba47a3d709d7 |
rev |
line source |
0
|
1 import pydcext
|
|
2
|
|
3 def load(libpath):
|
|
4 return pydcext.load(libpath)
|
|
5
|
|
6 def find(libhandle,symbol):
|
|
7 return pydcext.find(libhandle,symbol)
|
|
8
|
|
9 def free(libhandle):
|
|
10 pydcext.free(libhandle)
|
|
11
|
|
12 def call(funcptr,signature,*arguments):
|
|
13 return pydcext.call(funcptr,signature,arguments)
|
|
14
|