home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / emulate / resgrep0.lha / ResGrep03b / source / id.h < prev    next >
C/C++ Source or Header  |  1992-05-09  |  866b  |  32 lines

  1. #ifndef CC_ID_H
  2. #define CC_ID_H
  3.  
  4. // Dort gibt's alles was das Herz begehrt.
  5. extern "C" {
  6. #include <libraries/iffparse.h>
  7. };
  8.  
  9. // The (Amiga-)IFF Types
  10. #define ID_8SVX         MAKE_ID('8','S','V','X')
  11. #define ID_BODY         MAKE_ID('B','O','D','Y')
  12. #define ID_BMHD         MAKE_ID('B','M','H','D')
  13. #define ID_CHRS         MAKE_ID('C','H','R','S')
  14. #define ID_FTXT         MAKE_ID('F','T','X','T')
  15. #define ID_ILBM         MAKE_ID('I','L','B','M')
  16. #define ID_VHDR         MAKE_ID('V','H','D','R')
  17.  
  18. // The Mac Resource Types
  19. // d stands for  #
  20. // b     "      ' '
  21.  
  22. #define ID_ICNd         MAKE_ID('I','C','N','#')
  23. #define ID_STRd         MAKE_ID('S','T','R','#')
  24. #define ID_snd            MAKE_ID('s','n','d',' ')
  25. #define ID_icl4         MAKE_ID('i','c','l','4')
  26. #define ID_icl8         MAKE_ID('i','c','l','8')
  27. #define ID_icsd         MAKE_ID('i','c','s','#')
  28. #define ID_ics4         MAKE_ID('i','c','s','4')
  29. #define ID_ics8         MAKE_ID('i','c','s','8')
  30.  
  31. #endif
  32.