AVPlayState.hx 449 B

12345678910111213141516
  1. package flash.media;
  2. extern class AVPlayState {
  3. @:flash.property var state(get,never) : Int;
  4. function new(state : UInt) : Void;
  5. private function get_state() : Int;
  6. static final BUFFERING : Int;
  7. static final EOF : Int;
  8. static final PAUSED : Int;
  9. static final PLAYING : Int;
  10. static final READY : Int;
  11. static final SUSPENDED : Int;
  12. static final TRICK_PLAY : Int;
  13. static final UNINITIALIZED : Int;
  14. static final UNRECOVERABLE_ERROR : Int;
  15. }