56 lines
1.3 KiB
C
Executable File
56 lines
1.3 KiB
C
Executable File
/******************************************************************************
|
|
*
|
|
* fn_pub.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-DESCRIPTION:
|
|
*
|
|
* This file contains parameters used by the conversion routines,
|
|
* and a collection of useful typedefs,
|
|
*
|
|
* END-DESCRIPTION
|
|
*
|
|
* START-DESIGN:
|
|
*
|
|
* END-DESIGN
|
|
*
|
|
* START-FUTURES:
|
|
*
|
|
* END-FUTURES
|
|
*/
|
|
|
|
/* START-CODE: */
|
|
|
|
#define USE_PI_CONVERSION -2
|
|
#define NONEXACTNUMERIC -1
|
|
#define NOERROR 0
|
|
#define VALUEERROR 1
|
|
#define CONVERROR 2
|
|
#define DATEWARNING 3
|
|
|
|
extern char* fn_work_area;
|
|
extern short int fn_european_date;
|
|
|
|
/* END-CODE */
|