45 lines
1.5 KiB
C
Executable File
45 lines
1.5 KiB
C
Executable File
#ifndef h_locale
|
|
#define h_locale
|
|
/******************************************************************************
|
|
*
|
|
* Declarations for UniVerse Internationalization
|
|
*
|
|
* 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.
|
|
* 04/17/96 18242 TMC change char to unsigned char rather than uchar
|
|
* 04/17/96 18242 TMC change char to unsigned char
|
|
* 06/18/90 7207 JSM Implemented for local data representation
|
|
*
|
|
*****************************************************************************/
|
|
|
|
struct nlsinfo
|
|
{
|
|
unsigned char *decimal_point;
|
|
unsigned char *thousands_sep;
|
|
unsigned char *grouping;
|
|
unsigned char *currency_symbol;
|
|
unsigned char *mon_decimal_point;
|
|
unsigned char *mon_thousands_sep;
|
|
unsigned char *mon_grouping;
|
|
unsigned char *positive_sign;
|
|
unsigned char *negative_sign;
|
|
unsigned char p_cs_precedes;
|
|
unsigned char p_sep_by_space;
|
|
unsigned char n_cs_precedes;
|
|
unsigned char n_sep_by_space;
|
|
unsigned char p_sign_posn;
|
|
unsigned char n_sign_posn;
|
|
};
|
|
#endif /* end of locale.h */
|