summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bcdd/BCalcWrapper.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/bcdd/BCalcWrapper.py b/bcdd/BCalcWrapper.py
index 9337809..d7ed7cd 100644
--- a/bcdd/BCalcWrapper.py
+++ b/bcdd/BCalcWrapper.py
@@ -2,7 +2,7 @@
Wrapper class for libbcalcDDS.dll
'''
-from ctypes import cdll
+from ctypes import cdll, c_void_p
from .Exceptions import DllNotFoundException
@@ -25,7 +25,12 @@ class BCalcWrapper(object):
def __getattr__(self, attrname):
def _dynamic_method(*args):
- return getattr(self.libbcalcdds, 'bcalcDDS_' + attrname)(*args)
+ function = getattr(self.libbcalcdds, 'bcalcDDS_' + attrname)
+ if attrname == 'new':
+ function.restype = c_void_p
+ else:
+ function.argtypes = [c_void_p]
+ return function(*args)
return _dynamic_method
def declarerToLeader(self, player):