From 422fc0b923a9ce20f41a5ec519fcd183cb5a797a Mon Sep 17 00:00:00 2001 From: Merlijn Wajer Date: Wed, 31 Mar 2010 00:28:36 +0200 Subject: [PATCH] Forgot this file --- Projects/MMLLib/pymml/mmltypes.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Projects/MMLLib/pymml/mmltypes.py 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) + +