ObjectOutput.hx 747 B

12345678910111213141516171819
  1. package flash.utils;
  2. extern class ObjectOutput implements IDataOutput {
  3. var endian : Endian;
  4. var objectEncoding : UInt;
  5. function new() : Void;
  6. function writeBoolean(value : Bool) : Void;
  7. function writeByte(value : Int) : Void;
  8. function writeBytes(bytes : ByteArray, offset : UInt = 0, length : UInt = 0) : Void;
  9. function writeDouble(value : Float) : Void;
  10. function writeFloat(value : Float) : Void;
  11. function writeInt(value : Int) : Void;
  12. function writeMultiByte(value : String, charSet : String) : Void;
  13. function writeObject(object : Dynamic) : Void;
  14. function writeShort(value : Int) : Void;
  15. function writeUTF(value : String) : Void;
  16. function writeUTFBytes(value : String) : Void;
  17. function writeUnsignedInt(value : UInt) : Void;
  18. }