68 lines
2.1 KiB
C
68 lines
2.1 KiB
C
|
#ifndef h_ftypdesc
|
||
|
#define h_ftypdesc
|
||
|
/******************************************************************************
|
||
|
*
|
||
|
* Descriptions of file types
|
||
|
*
|
||
|
* 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.
|
||
|
* 07/25/88 - - Maintenence log purged at 5.2.1, see release 5.1.10.
|
||
|
*
|
||
|
*****************************************************************************/
|
||
|
|
||
|
PRI_RO uchar ttypdesc[19][56] =
|
||
|
{ "",
|
||
|
"",
|
||
|
"Hashed, keys end in numbers.",
|
||
|
"Hashed, keys end mainly in numbers.",
|
||
|
"Hashed, keys end in letters.",
|
||
|
"Hashed, keys end in full range of ASCII characters.",
|
||
|
"Hashed, keys begin in numbers.",
|
||
|
"Hashed, keys begin mainly in numbers.",
|
||
|
"Hashed, keys begin in letters.",
|
||
|
"Hashed, keys begin in full range of ASCII characters.",
|
||
|
"Hashed, keys are numbers.",
|
||
|
"Hashed, keys are mainly numbers.",
|
||
|
"Hashed, keys are letters.",
|
||
|
"Hashed, keys are full range of ASCII characters.",
|
||
|
"Hashed, entire keys are numbers.",
|
||
|
"Hashed, entire keys are mainly numbers.",
|
||
|
"Hashed, entire keys are letters.",
|
||
|
"Hashed, entire keys are full range of ASCII characters.",
|
||
|
"Hashed, entire keys are full range of ASCII characters."
|
||
|
};
|
||
|
|
||
|
PUB_RW STRING typdesc[19] =
|
||
|
{ { 0,ttypdesc[0] },
|
||
|
{ 0,ttypdesc[1] },
|
||
|
{ 28,ttypdesc[2] },
|
||
|
{ 35,ttypdesc[3] },
|
||
|
{ 28,ttypdesc[4] },
|
||
|
{ 51,ttypdesc[5] },
|
||
|
{ 30,ttypdesc[6] },
|
||
|
{ 37,ttypdesc[7] },
|
||
|
{ 30,ttypdesc[8] },
|
||
|
{ 53,ttypdesc[9] },
|
||
|
{ 25,ttypdesc[10] },
|
||
|
{ 32,ttypdesc[11] },
|
||
|
{ 25,ttypdesc[12] },
|
||
|
{ 48,ttypdesc[13] },
|
||
|
{ 32,ttypdesc[14] },
|
||
|
{ 39,ttypdesc[15] },
|
||
|
{ 32,ttypdesc[16] },
|
||
|
{ 55,ttypdesc[17] },
|
||
|
{ 55,ttypdesc[18] }
|
||
|
};
|
||
|
#endif /* end of ftypdesc */
|