diff options
Diffstat (limited to 'Mac/Modules/qd/qdedit.py')
-rw-r--r-- | Mac/Modules/qd/qdedit.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Mac/Modules/qd/qdedit.py b/Mac/Modules/qd/qdedit.py new file mode 100644 index 0000000..2242c5a --- /dev/null +++ b/Mac/Modules/qd/qdedit.py @@ -0,0 +1,29 @@ +f = Function(void, 'GlobalToLocal', + (Point, 'thePoint', InOutMode), +) +functions.append(f) + +f = Function(void, 'LocalToGlobal', + (Point, 'thePoint', InOutMode), +) +functions.append(f) + +f = Function(void, 'SetPort', + (WindowPtr, 'thePort', InMode), +) +functions.append(f) + +f = Function(void, 'ClipRect', + (Rect, 'r', InMode), +) +functions.append(f) + +f = Function(void, 'EraseRect', + (Rect, 'r', InMode), +) +functions.append(f) + +f = Function(void, 'OpenDeskAcc', + (Str255, 'name', InMode), +) +functions.append(f) |