home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 55 / af055a.adf / Docs / arq.h < prev    next >
C/C++ Source or Header  |  1992-08-28  |  496b  |  31 lines

  1. #ifndef ARQ_ARQ_H
  2. #define ARQ_ARQ_H
  3.  
  4. #define ARQ_MAGIC 0x6D6A6C21
  5.  
  6. #define ARQ_ID_INFO        0
  7. #define ARQ_ID_DISK        1
  8. #define ARQ_ID_DELETE    2
  9. #define ARQ_ID_GURU        3
  10. #define ARQ_ID_RWERROR    4
  11. #define ARQ_ID_WPROTECT    5
  12. #define ARQ_ID_PRINTER    6
  13. #define ARQ_ID_QUESTION    7
  14. #define ARQ_ID_EXCLAM    8
  15.  
  16. #define ARQ_ID_IMAGE        -1
  17. #define ARQ_ID_ANIM        -2
  18.  
  19. struct ExtEasyStruct
  20.     {
  21.     struct Image *Image;
  22.     char *Sound;
  23.     WORD AnimID;
  24.     UWORD Flags;
  25.     ULONG Magic;
  26.     ULONG Reserved[3];
  27.     struct EasyStruct Easy;
  28.     };
  29.  
  30. #endif
  31.