AVPlayState.hx 350 B

1234567891011121314
  1. package flash.media;
  2. extern class AVPlayState {
  3. var state(default,null) : Int;
  4. function new(state : UInt) : Void;
  5. static var BUFFERING : Int;
  6. static var EOF : Int;
  7. static var PAUSED : Int;
  8. static var PLAYING : Int;
  9. static var READY : Int;
  10. static var SUSPENDED : Int;
  11. static var UNINITIALIZED : Int;
  12. static var UNRECOVERABLE_ERROR : Int;
  13. }