summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/qd/qdscan.py
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Modules/qd/qdscan.py')
-rw-r--r--Mac/Modules/qd/qdscan.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/Mac/Modules/qd/qdscan.py b/Mac/Modules/qd/qdscan.py
index 2838c06..6c87ce0 100644
--- a/Mac/Modules/qd/qdscan.py
+++ b/Mac/Modules/qd/qdscan.py
@@ -109,6 +109,11 @@ class MyScanner(Scanner):
('short', 'byteCount', 'InMode')],
[('TextThingie', '*', '*'), ('*', '*', '*'), ('*', '*', '*')]),
+ # GetPen and SetPt use a point-pointer as output-only:
+ ('GetPen', [('Point', '*', 'OutMode')], [('*', '*', 'OutMode')]),
+ ('SetPt', [('Point', '*', 'OutMode')], [('*', '*', 'OutMode')]),
+
+ # All others use it as input/output:
([('Point', '*', 'OutMode')],
[('*', '*', 'InOutMode')]),