forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
26
Kha/Tools/linux_x64/std/flash/utils/IDataInput.hx
Normal file
26
Kha/Tools/linux_x64/std/flash/utils/IDataInput.hx
Normal file
@ -0,0 +1,26 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user