diff --git a/Projects/MMLLib/pymml/mmltypes.py b/Projects/MMLLib/pymml/mmltypes.py new file mode 100644 index 0000000..c5cef85 --- /dev/null +++ b/Projects/MMLLib/pymml/mmltypes.py @@ -0,0 +1,9 @@ +from ctypes import * + +class POINT(Structure): + _fields_ = [('x', c_int), + ('y', c_int)] + +PPOINT = POINTER(POINT) + +