Fixed TrackMouseRegion() argument: ioWasInRgn is an in/out parameter.
diff --git a/Mac/Modules/carbonevt/CarbonEvtscan.py b/Mac/Modules/carbonevt/CarbonEvtscan.py
index 3539196..0cc048a 100644
--- a/Mac/Modules/carbonevt/CarbonEvtscan.py
+++ b/Mac/Modules/carbonevt/CarbonEvtscan.py
@@ -109,8 +109,10 @@
 	def makerepairinstructions(self):
 		return [
 			([("UInt32", 'inSize', "InMode"), ("void_ptr", 'inDataPtr', "InMode")],
-				[("MyInBuffer", 'inDataPtr', "InMode")])
+			 [("MyInBuffer", 'inDataPtr', "InMode")]),
+			([("Boolean", 'ioWasInRgn', "OutMode")],
+			 [("Boolean", 'ioWasInRgn', "InOutMode")]),
 		]
-		
+
 if __name__ == "__main__":
 	main()
diff --git a/Mac/Modules/carbonevt/_CarbonEvtmodule.c b/Mac/Modules/carbonevt/_CarbonEvtmodule.c
index 2099cff..dca9d33 100755
--- a/Mac/Modules/carbonevt/_CarbonEvtmodule.c
+++ b/Mac/Modules/carbonevt/_CarbonEvtmodule.c
@@ -1447,9 +1447,10 @@
 	RgnHandle inRegion;
 	Boolean ioWasInRgn;
 	UInt16 outResult;
-	if (!PyArg_ParseTuple(_args, "O&O&",
+	if (!PyArg_ParseTuple(_args, "O&O&b",
 	                      GrafObj_Convert, &inPort,
-	                      ResObj_Convert, &inRegion))
+	                      ResObj_Convert, &inRegion,
+	                      &ioWasInRgn))
 		return NULL;
 	_err = TrackMouseRegion(inPort,
 	                        inRegion,
@@ -1795,7 +1796,7 @@
 	{"TrackMouseLocationWithOptions", (PyCFunction)CarbonEvents_TrackMouseLocationWithOptions, 1,
 	 "(GrafPtr inPort, OptionBits inOptions, double inTimeout) -> (Point outPt, UInt32 outModifiers, UInt16 outResult)"},
 	{"TrackMouseRegion", (PyCFunction)CarbonEvents_TrackMouseRegion, 1,
-	 "(GrafPtr inPort, RgnHandle inRegion) -> (Boolean ioWasInRgn, UInt16 outResult)"},
+	 "(GrafPtr inPort, RgnHandle inRegion, Boolean ioWasInRgn) -> (Boolean ioWasInRgn, UInt16 outResult)"},
 	{"GetLastUserEventTime", (PyCFunction)CarbonEvents_GetLastUserEventTime, 1,
 	 "() -> (double _rv)"},
 	{"GetWindowEventTarget", (PyCFunction)CarbonEvents_GetWindowEventTarget, 1,