home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / DMultiStringLocator / versionResources / versionProductInfo.h < prev    next >
Encoding:
Text File  |  1996-07-06  |  1.7 KB  |  40 lines  |  [TEXT/CWIE]

  1. // versionProductInfo.h
  2. //   ---------------------
  3. //   ©1996 Eric Gundrum, All rights reserved.
  4. //   The contents of this file may be freely altered and freely distributed
  5. //   in any form, provided this copyright statement is retained unaltered.
  6. //   Add your own changes below.
  7. //   ---------------------
  8. //
  9. //    This file defines product and file specific version information used by version.r.
  10. //    Consider overriding these definitions in your make file to better automate the 
  11. //    versioning process.
  12.  
  13.  
  14. #ifndef __versionProductInfo__h
  15. #define __versionProductInfo__h    1
  16.  
  17. #define    productFileName            "DMultiStringLocator.68K"    // helpful in file recovery
  18. #define    productName                "DMultiStringLocator"        // collects files of a product
  19. #define    productCopyrightOwner    "Eric Gundrum"                // copyright holder
  20. #define    productReleaseYear        $$format( "%d", $$Year )    // copyright year
  21.  
  22. // displayed in Finder Balloon help; up to 480 bytes recommended; container limit is 32K
  23. #define    productDescription        "Demonstrates the DMultiStringLocator string search class."    
  24.  
  25. #define productVersMajor        1            // between 0 and 15
  26. #define productVersMinor        0            // between 0 and 15
  27. #define productVersMaintenance    0            // between 0 and 255
  28. #define productVersReleaseType    final        // choose development, alpha, beta or final
  29. #define productVersNonrelease    1            // between 0 and 255
  30. #define productVersRegion        verUS        // localization code
  31.  
  32. #define fileVersMajor            1            // between 0 and 15
  33. #define fileVersMinor            0            // between 0 and 15
  34. #define fileVersMaintenance        0            // between 0 and 255
  35. #define fileVersReleaseType        final        // choose development, alpha, beta or final
  36. #define fileVersNonrelease        1            // between 0 and 255
  37. #define fileVersRegion            productVersRegion
  38.  
  39. #endif __versionProductInfo__h
  40.