Browse Source

added is64()

Nicolas Cannasse 8 years ago
parent
commit
00091dc7f1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      std/hl/Api.hx

+ 2 - 1
std/hl/Api.hx

@@ -36,5 +36,6 @@ extern class Api {
 	@:hlNative("std", "get_virtual_value") static function getVirtualValue( v : Dynamic ) : Dynamic;
 	@:hlNative("std", "get_virtual_value") static function getVirtualValue( v : Dynamic ) : Dynamic;
 	@:hlNative("std", "set_error_handler") static function setErrorHandler( v : Dynamic -> Void ) : Void;
 	@:hlNative("std", "set_error_handler") static function setErrorHandler( v : Dynamic -> Void ) : Void;
 	@:hlNative("std", "breakpoint") static function breakPoint() : Void;
 	@:hlNative("std", "breakpoint") static function breakPoint() : Void;
-	
+	@:hlNative("std", "sys_is64") static function is64() : Bool;
+
 }
 }