87 lines
2.3 KiB
C
87 lines
2.3 KiB
C
|
#ifndef h_ioconv
|
||
|
#define h_ioconv
|
||
|
|
||
|
/******************************************************************************
|
||
|
*
|
||
|
* UniVerse Common ICONV/OCONV definitions
|
||
|
*
|
||
|
* 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 20613 NDP Added C_COUNT_MM.
|
||
|
* 06/03/97 20433 PEJ New header to isolate counter definitions
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#if DO_COUNT
|
||
|
|
||
|
/* Next free entry, update this when adding to the alphabetic list below */
|
||
|
|
||
|
#define C_COUNT_NEXT 45
|
||
|
|
||
|
/* Size of counter table, this has to be an even number */
|
||
|
|
||
|
#define C_COUNT_MAX ( C_COUNT_NEXT + C_COUNT_NEXT % 2 )
|
||
|
|
||
|
/* Tracked conversion codes, keep list in alphabetic order */
|
||
|
|
||
|
#define C_COUNT_A 0
|
||
|
#define C_COUNT_C 1
|
||
|
#define C_COUNT_D 2
|
||
|
#define C_COUNT_ESC 37
|
||
|
#define C_COUNT_F 3
|
||
|
#define C_COUNT_G 4
|
||
|
#define C_COUNT_L 5
|
||
|
#define C_COUNT_MB 7
|
||
|
#define C_COUNT_MB0C 6
|
||
|
#define C_COUNT_MCA 8
|
||
|
#define C_COUNT_MCDX 9
|
||
|
#define C_COUNT_MCL 10
|
||
|
#define C_COUNT_MCM 41
|
||
|
#define C_COUNT_MCN 11
|
||
|
#define C_COUNT_MCP 12
|
||
|
#define C_COUNT_MCT 13
|
||
|
#define C_COUNT_MCU 14
|
||
|
#define C_COUNT_MCW 38
|
||
|
#define C_COUNT_MCXD 15
|
||
|
#define C_COUNT_MC_A 16
|
||
|
#define C_COUNT_MC_M 42
|
||
|
#define C_COUNT_MC_N 17
|
||
|
#define C_COUNT_MD 18
|
||
|
#define C_COUNT_ML 19
|
||
|
#define C_COUNT_MM 44
|
||
|
#define C_COUNT_MO 21
|
||
|
#define C_COUNT_MO0C 20
|
||
|
#define C_COUNT_MP 22
|
||
|
#define C_COUNT_MR 23
|
||
|
#define C_COUNT_MT 24
|
||
|
#define C_COUNT_MU0C 34
|
||
|
#define C_COUNT_MX 26
|
||
|
#define C_COUNT_MX0C 35
|
||
|
#define C_COUNT_MY 25
|
||
|
#define C_COUNT_NL 43
|
||
|
#define C_COUNT_NLS 39
|
||
|
#define C_COUNT_NR 27
|
||
|
#define C_COUNT_P 28
|
||
|
#define C_COUNT_PW 40
|
||
|
#define C_COUNT_Q 36
|
||
|
#define C_COUNT_R 29
|
||
|
#define C_COUNT_S 30
|
||
|
#define C_COUNT_T 31
|
||
|
#define C_COUNT_TFILE 32
|
||
|
#define C_COUNT_U 33
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif /* end of ioconv.h */
|