28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Haxe
		
	
	
	
	
	
		
		
			
		
	
	
			28 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Haxe
		
	
	
	
	
	
|  | package flash.utils; | ||
|  | 
 | ||
|  | extern class ObjectInput implements IDataInput { | ||
|  | 	@:flash.property var bytesAvailable(get,never) : UInt; | ||
|  | 	@:flash.property var endian(get,set) : Endian; | ||
|  | 	@:flash.property var objectEncoding(get,set) : UInt; | ||
|  | 	function new() : Void; | ||
|  | 	private function get_bytesAvailable() : UInt; | ||
|  | 	private function get_endian() : Endian; | ||
|  | 	private function get_objectEncoding() : UInt; | ||
|  | 	function readBoolean() : Bool; | ||
|  | 	function readByte() : Int; | ||
|  | 	function readBytes(bytes : ByteArray, offset : UInt = 0, length : UInt = 0) : Void; | ||
|  | 	function readDouble() : Float; | ||
|  | 	function readFloat() : Float; | ||
|  | 	function readInt() : Int; | ||
|  | 	function readMultiByte(length : UInt, charSet : String) : String; | ||
|  | 	function readObject() : Dynamic; | ||
|  | 	function readShort() : Int; | ||
|  | 	function readUTF() : String; | ||
|  | 	function readUTFBytes(length : UInt) : String; | ||
|  | 	function readUnsignedByte() : UInt; | ||
|  | 	function readUnsignedInt() : UInt; | ||
|  | 	function readUnsignedShort() : UInt; | ||
|  | 	private function set_endian(value : Endian) : Endian; | ||
|  | 	private function set_objectEncoding(value : UInt) : UInt; | ||
|  | } |