mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-18 23:35:01 -05:00
20 lines
300 B
Python
20 lines
300 B
Python
|
#!/usr/bin/env python
|
||
|
from ctypes import *
|
||
|
|
||
|
dll = CDLL('./libmml.so')
|
||
|
dll.test.restype = c_char_p
|
||
|
a = dll.test()
|
||
|
print a
|
||
|
|
||
|
dll.init.restype = None
|
||
|
dll.init()
|
||
|
|
||
|
class POINT(Structure):
|
||
|
_fields_ = [('x', c_int),
|
||
|
('y', c_int)]
|
||
|
|
||
|
dll.getmousepos.restype = POINT
|
||
|
b = dll.getmousepos()
|
||
|
|
||
|
print b.x, b.y
|