Enabled resID input/output parameter to NewMovieFromFile. This changes
the Python interface, unfortunately.
Added a few calls that were blacklisted for no apparent reason.
diff --git a/Mac/Modules/qt/qtscan.py b/Mac/Modules/qt/qtscan.py
index 6b26bcb..614d580 100644
--- a/Mac/Modules/qt/qtscan.py
+++ b/Mac/Modules/qt/qtscan.py
@@ -40,17 +40,18 @@
 			"DisposeUserData",		# ditto
 			"DisposeTimeBase",		# ditto
 			"DisposeMovieController", # ditto
-			"GetMovieCreationTime",	# type "unsigned long" in C, inparseable
-			"GetMovieModificationTime",	# Ditto
-			"GetTrackCreationTime",		# ditto
-			"GetTrackModificationTime",	# Ditto
-			"GetMediaCreationTime",		# ditto
-			"GetMediaModificationTime",	# Ditto
+#			"GetMovieCreationTime",	# type "unsigned long" in C, inparseable
+#			"GetMovieModificationTime",	# Ditto
+#			"GetTrackCreationTime",		# ditto
+#			"GetTrackModificationTime",	# Ditto
+#			"GetMediaCreationTime",		# ditto
+#			"GetMediaModificationTime",	# Ditto
 			# The following 4 use 'void *' in an uncontrolled way
 			# TBD when I've read the manual...
 			"GetUserDataItem",
 			"SetUserDataItem",
 			"SetTextSampleData",
+			"BeginFullScreen",
 			# bgen gets the argument in/out wrong..
 			"AddTextSample",
 			"AddTESample",
@@ -105,8 +106,8 @@
 #			"TextDescription",
 #			"MusicDescription",
 			# I dont know yet how to do these.
-			"CGrafPtr",
-			"GDHandle",
+#			"CGrafPtr",
+#			"GDHandle",
 			# Routine pointers, not yet.
 			"MoviesErrorUPP",
 			"MoviePreviewCallOutUPP",
@@ -119,6 +120,7 @@
 			"MCActionFilterWithRefConUPP",
 			"GetMovieUPP",
 			"ModalFilterUPP",
+			"TrackTransferUPP",
 			"QTAtomContainer",
 			"SpriteWorld",
 			"Sprite",
@@ -134,7 +136,7 @@
 			 
 			# NewMovieFromFile
 			([('short', 'resId', 'OutMode'), ('StringPtr', 'resName', 'InMode')],
-			 [('dummyshortptr', 'resId', 'InMode'), ('dummyStringPtr', 'resName', 'InMode')]),
+			 [('short', 'resId', 'InOutMode'), ('dummyStringPtr', 'resName', 'InMode')]),
 			 
 			# MCDoAction and more
 			([('void', '*', 'OutMode')], [('mcactionparams', '*', 'InMode')]),