81 lines
2.8 KiB
C
Executable File
81 lines
2.8 KiB
C
Executable File
/******************************************************************************
|
||
*
|
||
* The one and only product version number file.
|
||
*
|
||
* Module UVERSION.h Version 4.2.1.1 Date 07/31/97
|
||
*
|
||
* (c) Copyright 1998 Ardent Software Inc. - All Rights Reserved
|
||
* This is unpublished proprietary source code of Ardent Software, Inc.
|
||
* The copyright notice above does not evidence any actual or intented
|
||
* publication of such source code.
|
||
*
|
||
*******************************************************************************
|
||
*
|
||
* Maintenence log - insert most recent change descriptions at top
|
||
*
|
||
* Date.... GTAR# WHO Description.........................................
|
||
* 08/20/99 25621 WSM Add UVNETREV
|
||
* 08/13/99 25605 RJE Update release to 9.5.1.1D
|
||
* 05/03/99 24291 RJE Update release to 9.5.1.1C
|
||
* 01/11/99 24291 RJE Change release from 9.5.1.2 to 9.5.1.1A
|
||
* 12/14/98 23601 SAP Change release from 9.5.1.1 to 9.5.1.2
|
||
* 10/14/98 23801 SAP Change copyrights.
|
||
* 09/11/98 23617 OGO Change company name to Ardent
|
||
* 09/10/98 23617 JAG Use UVRELEASE in build process
|
||
* 04/07/98 18870 JSM Added UVRELEASE for RELEASENO macro in RELLEVEL
|
||
* 08/20/96 19085 AGM Use spaces rather than tabs after #define
|
||
* 08/13/96 19017 AGM Add UVSBUILD token (for NT builds)
|
||
* 08/13/96 19017 AGM Add UV_BUILD_NO token (for NT builds)
|
||
* 08/08/96 18940 AGM #if out UVREV for InstallShield
|
||
* 05/24/96 18442 AGM Created
|
||
*
|
||
*****************************************************************************/
|
||
|
||
/*
|
||
* NOTE: This file is included into C header files AND Microsoft resource
|
||
* script files AND InstallShield scripts. It should only ever contain
|
||
* #define's. #if's can be used but do not rely on any of the universe
|
||
* header files having been included first (e.g. hardware.h or uv.h)
|
||
*
|
||
*/
|
||
|
||
#define UV_COMPANY_NAME "Ardent Software Inc."
|
||
#define UV_PRODUCT_NAME "UniVerse"
|
||
|
||
#define UV_MAJOR_REV 9
|
||
#define UV_DEV_PHASE 5
|
||
#define UV_MINOR_REV 1
|
||
#define UV_ROLLOUT 1
|
||
|
||
/* Product build number strings (for NT use) */
|
||
|
||
#define UV_BUILD_NO 400
|
||
#define UVSBUILD "9.5.1.400"
|
||
|
||
/* Product version number strings */
|
||
|
||
#ifndef INSTALLSHIELD
|
||
#define UVREV ((UV_MAJOR_REV << 12) | (UV_DEV_PHASE << 8) | (UV_MINOR_REV << 4) | UV_ROLLOUT)
|
||
#endif
|
||
|
||
#define UVNETREV 0x9521
|
||
|
||
#define UVSREV "9.5.1.1"
|
||
|
||
#define UVRELEASE "9.5.1.1D"
|
||
/* Specific release number to be updated by patch releases and rapid
|
||
releases. Warning: the build process greps this file for this
|
||
line, so no other line should look like it. */
|
||
|
||
#define UV_VERSION_STRING "@(#)UniVerse Version 9.5.1.1D of 08/16/99"
|
||
|
||
/* Copyright notices */
|
||
|
||
#ifdef MSWIN
|
||
#define UV_COPYRIGHT_STRING "Copyright <20> 1998 Ardent Software Inc. All Rights Reserved"
|
||
#else
|
||
#define UV_COPYRIGHT_STRING "@(#)(c) Copyright 1998 Ardent Software Inc. - All Rights Reserved"
|
||
#endif
|
||
|
||
/* End of Module */
|