Nicolas Cannasse 19 years ago
parent
commit
8d4681af0e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/flash9/external/ExternalInterface.hx

+ 1 - 1
std/flash9/external/ExternalInterface.hx

@@ -4,7 +4,7 @@ extern class ExternalInterface {
 	function new() : Void;
 	static function addCallback(functionName : String, closure : Dynamic ) : Void;
 	static var available(default,null) : Bool;
-	static function call(functionName : String, ?p1 : Dynamic, ?p2 : Dynamic, ?p3 : Dynamic, ?p4 : Dynamic, ?p5 : Dynamic ) : Void;
+	static function call(functionName : String, ?p1 : Dynamic, ?p2 : Dynamic, ?p3 : Dynamic, ?p4 : Dynamic, ?p5 : Dynamic ) : Dynamic;
 	static var objectID(default,null) : String;
 	private static function _addCallback(functionName : String, closure : Dynamic) : Void;
 	private static function _argumentsToAS(obj : Dynamic) : Array<Dynamic>;