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

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows - (C) Copyright 1991, 1993 by Borland International
  3. //   source\owl\version.cpp
  4. //   OWL global version structure
  5. //----------------------------------------------------------------------------
  6. #include <owl\version.h>
  7.  
  8. #define WhoIsUs "OWL"
  9.  
  10. struct TVersionHeader {
  11.   char          Signature[6];
  12.   unsigned long InternalVersionNumber;
  13.   char          ComponentIdString[sizeof(WhoIsUs)+1];
  14. };
  15.  
  16. TVersionHeader VersionHeader = {
  17.   {'$', '*', '$', '*', '$', '*'},
  18.   {InternalVersion},
  19.   WhoIsUs,
  20. };
  21.