home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / BOCOLE.PAK / BOLEVER.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  646 b   |  24 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectComponents
  3. // Copyright (c) 1991, 1996 by Borland International, All Rights Reserved
  4. //
  5. // $Revision:   2.2  $
  6. //
  7. //   Global version structure for vprint
  8. //----------------------------------------------------------------------------
  9. #include "bolever.h"
  10.  
  11. #define WhoIsUs "BOCOLE"
  12.  
  13. struct TVersionHeader {
  14.   char          Signature[6];
  15.   unsigned long InternalVersionNumber;
  16.   char          ComponentIdString[sizeof(WhoIsUs)+1];
  17. };
  18.  
  19. TVersionHeader VersionHeader = {
  20.   {'$', '*', '$', '*', '$', '*'},
  21.   {BOLE_FILEVER_LS},
  22.   WhoIsUs,
  23. };
  24.