home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / CD32 / CD32_Support / examples / cdgsxl / Include / cdxl / xlm.h < prev   
Encoding:
C/C++ Source or Header  |  1993-07-08  |  399 b   |  25 lines

  1. /*******************************
  2.  
  3.              xlm.h
  4.  
  5.          W.D.L 930708
  6.  
  7.  cdgsxl message passing header
  8.  
  9. ********************************/
  10.  
  11. typedef struct XLMessage {
  12.     struct Message    msg;
  13.     ULONG        command;
  14.     ULONG        status;
  15.  
  16. } XLMESSAGE;
  17.  
  18. // Commands
  19. #define    XLM_CMD_QUERY        0
  20. #define    XLM_CMD_ABORT        1
  21.  
  22. // Status
  23. #define    XLM_STATUS_PLAYING    0x00000001
  24. #define    XLM_STATUS_ABORTING    0x00000002
  25.