home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 January: Mac OS SDK / Dev.CD Jan 99 SDK1.toast / Development Kits / Mac OS USB DDK_v1.0.1 / Examples / UniversalModule / UniversalModuleVersion.h < prev   
Encoding:
C/C++ Source or Header  |  1998-09-03  |  829 b   |  28 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        PackageVersion.h
  3.  
  4.     Contains:    Version number values for the entire package
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Written by:    Craig Keithley
  9.  
  10.     Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  11.  
  12. */
  13.  
  14. #ifndef __UNIVERSALMODULEVERSION__
  15. #define __UNIVERSALMODULEVERSION__
  16.  
  17. #include    "PackageVersion.h"
  18.  
  19. #define kUniversalStringVersShort    "1.0 DDK"
  20. #define kUniversalStringVersLong    "1.0 DDK, © 1998 Apple Computer, Inc."
  21.  
  22. #define kUniversalHexMajorVers        0x01                        // This should never change for the current project.
  23. #define kUniversalHexMinorVers        0x00                        // This should never change for the current project.
  24. #define kUniversalCurrentRelease    kFinalRelease                // Be sure to adjust this when the milestone is reached.
  25. #define kUniversalReleaseStage        0                            // Be sure to adjust this number every build.
  26.  
  27. #endif
  28.