54 lines
1.3 KiB
C
54 lines
1.3 KiB
C
|
/******************************************************************************
|
||
|
*
|
||
|
* rmv_desc.h - Used by the ICI convertion routines.
|
||
|
*
|
||
|
* 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.
|
||
|
* 13.12.93 12306 JC Creation of Module. Based on the PI/open version.
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
|
||
|
|
||
|
/* START-HISTORY:
|
||
|
*
|
||
|
* 10 Jul 91 (JRAMSDEN) [PIGS 3101, SPAR none]
|
||
|
* Module created (adapted from RM_DESCR.H)
|
||
|
*
|
||
|
* END-HISTORY
|
||
|
*
|
||
|
* START-DESCRIPTION:
|
||
|
*
|
||
|
* END-DESCRIPTION
|
||
|
*
|
||
|
* START-DESIGN:
|
||
|
*
|
||
|
* END-DESIGN
|
||
|
*
|
||
|
* START-FUTURES:
|
||
|
*
|
||
|
* END-FUTURES
|
||
|
*
|
||
|
* START-CODE:
|
||
|
*/
|
||
|
|
||
|
#define VUNASSIGNED 0x00
|
||
|
#define VINTEGER 0x01
|
||
|
#define VFLOAT 0x02
|
||
|
|
||
|
/* END-CODE */
|