home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / utils / sound / convrtr / amiga / amisox_w / patchlvl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-12  |  955 b   |  24 lines

  1. #define    PATCHLEVEL    6
  2. #define RELEASE    4
  3.  
  4. #ifdef AMIGA
  5.  
  6. /* Following is a really screwy way of incorporating compile-time info into *
  7.  * the binary as an Amiga version string.  Unfortunately, it was the only   *
  8.  * method I could find.  --dgc, 13 May 92                                   */
  9.  
  10. #define AmiVerChars1    {'$','V','E','R',':',' ','A','m','i','g','a',' ','S','o','u','n','d',' ','E','x','c','h','a','n','g','e',' ',
  11. #define AmiVerChars2    'w','i','t','h',' ','F','P','U',' ','s','u','p','p','o','r','t',' ',
  12. #define AmiVerChars3    'R','e','l','e','a','s','e',' ','0'+RELEASE,',',' ',
  13. #define AmiVerChars4    'P','a','t','c','h','l','e','v','e','l',' ','0'+PATCHLEVEL,'.','\0'}
  14. #ifdef MC68881
  15. #define AmiVerChars0    AmiVerChars1 AmiVerChars2
  16. #else
  17. #define AmiVerChars0    AmiVerChars1
  18. #endif MC68881
  19. #define AmiVerChars    AmiVerChars0 AmiVerChars3 AmiVerChars4
  20. /* if you change these strings, be sure to change the size here! */
  21. #define AmiVerSize    69
  22.  
  23. #endif AMIGA
  24.