view python/pydc/pydc.py @ 13:390380ef6362

- general readme update
author cslag
date Sat, 26 Mar 2016 15:56:15 +0100
parents 0cfcc391201f
children ba47a3d709d7
line wrap: on
line source

import pydcext

def load(libpath):
  return pydcext.load(libpath)

def find(libhandle,symbol):
  return pydcext.find(libhandle,symbol)

def free(libhandle):
  pydcext.free(libhandle)

def call(funcptr,signature,*arguments):
  return pydcext.call(funcptr,signature,arguments)