~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/flash9/utils/IDataInput.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2008-06-15 11:04:09 UTC
  • mfrom: (2.1.6 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080615110409-7pyykgwmk5v0cues
Tags: 1:1.19-3
* Remove bashism in script.
  (Closes: #484390)
* Upgrade to Policy 3.8.0 by including a README.source explaining how to
  use dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package flash.utils;
2
2
 
3
3
extern interface IDataInput {
4
 
        function new() : Void;
5
4
        var bytesAvailable(default,null) : UInt;
6
5
        var endian : String;
7
6
        var objectEncoding : UInt;
12
11
        function readFloat() : Float;
13
12
        function readInt() : Int;
14
13
        function readMultiByte(length : UInt, charSet : String) : String;
15
 
        function readObject() : Void;
 
14
        function readObject() : Dynamic;
16
15
        function readShort() : Int;
17
16
        function readUTF() : String;
18
17
        function readUTFBytes(length : UInt) : String;