1234567891011121314151617181920212223242526 |
- package flash.utils;
- extern interface IDataInput {
- @:flash.property var bytesAvailable(get,never) : UInt;
- @:flash.property var endian(get,set) : Endian;
- @:flash.property var objectEncoding(get,set) : UInt;
- 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;
- }
|