40 lines
1.4 KiB
C
Executable File
40 lines
1.4 KiB
C
Executable File
#ifndef h_flavor
|
|
#define h_flavor
|
|
/******************************************************************************
|
|
*
|
|
* UniVerse flavors
|
|
*
|
|
* Module %M% Version %I% Date %H%
|
|
*
|
|
* (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.........................................
|
|
* 10/14/98 23801 SAP Change copyrights.
|
|
* 06/26/97 20965 CSM Add DP_FLAVOR for NLS hook mechanism
|
|
* 03/08/94 12297 JSW Add PIOPEN_FLAVOR and IS_INFO_FLAVOR()
|
|
* 05/31/89 5312 DTW change define values
|
|
* 02/17/89 5319 JWT Add flavor code for IN2
|
|
* 07/25/88 - - Maintenence log purged at 5.2.1, see release 5.1.10.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#define IDEAL_FLAVOR 0x01
|
|
#define PICK_FLAVOR 0x02
|
|
#define INFO_FLAVOR 0x04
|
|
#define REAL_FLAVOR 0x08
|
|
#define IN2_FLAVOR 0x10
|
|
#define GCI_FLAVOR 0x20
|
|
#define PIOPEN_FLAVOR 0x40
|
|
#define IS_INFO_FLAVOR(x) (((x) == INFO_FLAVOR) || ((x) == PIOPEN_FLAVOR))
|
|
|
|
#define DP_FLAVOR 0x10000
|
|
|
|
#endif /* end of flavor.h */
|