annotate python/pydc/pydc.py @ 14:7752fcb107e7
- erlang binding build fix, linker arg was at wrong place
author |
cslag |
date |
Sat, 26 Mar 2016 16:09:04 +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
|