home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
BOCOLE.PAK
/
BOLEVER.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
621b
|
23 lines
//----------------------------------------------------------------------------
// ObjectWindows
// (C) Copyright 1991, 1994 by Borland International, All Rights Reserved
//
// OWL global version structure for vprint
//----------------------------------------------------------------------------
#include "bolever.h"
#define WhoIsUs "BOCOLE"
struct TVersionHeader {
char Signature[6];
unsigned long InternalVersionNumber;
char ComponentIdString[sizeof(WhoIsUs)+1];
};
TVersionHeader VersionHeader = {
{'$', '*', '$', '*', '$', '*'},
{BOLE_FILEVER_LS},
WhoIsUs,
};