Fixed parameters to a few time and timebase calls: InOut parameters were
inadvertantly seen as out-only.
diff --git a/Mac/Modules/qt/qtscan.py b/Mac/Modules/qt/qtscan.py
index ce79380..5f35195 100644
--- a/Mac/Modules/qt/qtscan.py
+++ b/Mac/Modules/qt/qtscan.py
@@ -110,6 +110,14 @@
 			# MCDoAction and more
 			([('void', '*', 'OutMode')], [('mcactionparams', '*', 'InMode')]),
 			
+			# SetTimeBaseZero. Does not handle NULLs, unfortunately
+			([('TimeRecord', 'zero', 'OutMode')], [('TimeRecord', 'zero', 'InMode')]),
+			
+			# ConvertTime and ConvertTimeScale
+			([('TimeRecord', 'inout', 'OutMode')], [('TimeRecord', 'inout', 'InOutMode')]),
+			
+			# AddTime and SubtractTime
+			([('TimeRecord', 'dst', 'OutMode')], [('TimeRecord', 'dst', 'InOutMode')]),
 			]
 			
 if __name__ == "__main__":