123456789101112131415161718 |
- package flash.utils;
- extern interface IDataOutput {
- var endian : Endian;
- var objectEncoding : UInt;
- function writeBoolean(value : Bool) : Void;
- function writeByte(value : Int) : Void;
- function writeBytes(bytes : ByteArray, ?offset : UInt, ?length : UInt) : Void;
- function writeDouble(value : Float) : Void;
- function writeFloat(value : Float) : Void;
- function writeInt(value : Int) : Void;
- function writeMultiByte(value : String, charSet : String) : Void;
- function writeObject(object : Dynamic) : Void;
- function writeShort(value : Int) : Void;
- function writeUTF(value : String) : Void;
- function writeUTFBytes(value : String) : Void;
- function writeUnsignedInt(value : UInt) : Void;
- }
|