First commit
[arrocco.git] / lib.py
bloba2c7545d7c8f1493be4f40fcc0951f3bc578fd89
1 # lib.py
2 # 1 Mar 2007
4 import ctypes
5 int64 = ctypes.c_ulonglong
7 from bits import *
10 def load():
11 lib = ctypes.cdll.LoadLibrary("./libso.so")
12 lib.makeChildren.restype = ctypes.c_int
13 lib.getTurn.restype = ctypes.c_int
15 return lib
18 lib = load()