2
0

tapedeck.pas 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. This file is part of the Free Pascal run time library.
  3. A file in Amiga system run time library.
  4. Copyright (c) 1998 by Nils Sjoholm
  5. member of the Amiga RTL development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit tapedeck;
  13. INTERFACE
  14. uses utility;
  15. const
  16. TDECK_Dummy = (TAG_USER+$05000000);
  17. TDECK_Mode = (TDECK_Dummy + 1);
  18. TDECK_Paused = (TDECK_Dummy + 2);
  19. TDECK_Tape = (TDECK_Dummy + 3);
  20. { (BOOL) Indicate whether tapedeck or animation controls. Defaults
  21. * to FALSE. }
  22. TDECK_Frames = (TDECK_Dummy + 11);
  23. { (LONG) Number of frames in animation. Only valid when using
  24. * animation controls. }
  25. TDECK_CurrentFrame = (TDECK_Dummy + 12);
  26. { (LONG) Current frame. Only valid when using animation controls. }
  27. {***************************************************************************}
  28. { Possible values for TDECK_Mode }
  29. BUT_REWIND = 0;
  30. BUT_PLAY = 1;
  31. BUT_FORWARD = 2;
  32. BUT_STOP = 3;
  33. BUT_PAUSE = 4;
  34. BUT_BEGIN = 5;
  35. BUT_FRAME = 6;
  36. BUT_END = 7;
  37. {***************************************************************************}
  38. IMPLEMENTATION
  39. end.