home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
zfamily.zip
/
zfamily
/
ZNLFUNCS
/
SAMPLE
/
ZNLMACRO.H
< prev
next >
Wrap
Text File
|
1993-09-21
|
1KB
|
41 lines
/*
** /----------------------------------------------------------------------\
** | IBM Z Family Reusable Libraries/2 (5641-504) |
** |----------------------------------------------------------------------|
** | (C) Copyright International Business Machines Corporation 1993, 1994 |
** \----------------------------------------------------------------------/
**
** Header : ZNLMACRO.H
** Author : Dario de Judicibus (DEJUDICI at ROMEPPC)
** Created : 20 Apr 1993
** Updated : 21 Sep 1993
** Version : 3.22
** Content : NLS Public Macros
**
*/
#ifndef znlMACROS
#define znlMACROS 0
/* --------------------------------------------------------------------- */
/*
** Author : Dario de Judicibus (DEJUDICI at ROMEPPC)
** Created : 20 Apr 1993
** Updated : 05 May 1993
** Version : 3.20
** Content : Macros to extract basic information about country settings
**
** Layout : (p) * Pointer to a znlCOUNTRYINFO structure
**
*/
#define znlThsSep(p) ((p)->CtryInfo.szThousandsSeparator[0])
#define znlDecSep(p) ((p)->CtryInfo.szDecimal[0])
#define znlDateSep(p) ((p)->CtryInfo.szDateSeparator[0])
#define znlTimeSep(p) ((p)->CtryInfo.szTimeSeparator[0])
#define znlDataSep(p) ((p)->CtryInfo.szDataSeparator[0])
#define znlIsISO(p) ((p)->Type == znlISO)
/* --------------------------------------------------------------------- */
#endif