home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 20.ddi / CLASSSRC.PAK / VERSION.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-02  |  1003 b   |  28 lines

  1. /*------------------------------------------------------------------------*/
  2. /*                                                                        */
  3. /*  VERSION.CPP                                                           */
  4. /*                                                                        */
  5. /*  Copyright Borland International 1993                                  */
  6. /*  All Rights Reserved                                                   */
  7. /*                                                                        */
  8. /*------------------------------------------------------------------------*/
  9.  
  10. #if !defined( __CLASSLIB_VERSION_H )
  11. #include "classlib\version.h"
  12. #endif    // __CLASSLIB_VERSION_H
  13.  
  14. #define ID "CLASSLIB"
  15.  
  16. struct TVersionHeader
  17. {
  18.     char          Signature[6];
  19.     unsigned long InternalVersionNumber;
  20.     char          ComponentIDstring[sizeof (ID)];
  21. } VersionHeader =
  22.  
  23. {
  24.     {'$', '*', '$', '*', '$', '*'},
  25.     {InternalVersion},
  26.     ID
  27. };
  28.