home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / zfamily.zip / zfamily / ZNLFUNCS / H / ZNLTYPES.H < prev   
Text File  |  1993-09-21  |  1KB  |  32 lines

  1. /*
  2. ** /----------------------------------------------------------------------\
  3. ** |             IBM Z Family Reusable Libraries/2 (5641-504)             |
  4. ** |----------------------------------------------------------------------|
  5. ** | (C) Copyright International Business Machines Corporation 1993, 1994 |
  6. ** \----------------------------------------------------------------------/
  7. **
  8. **  Module    : ZNLTYPES.H
  9. **  Author    : Valerio Tavazzi (TAVAZZI at ROMEPPC)
  10. **  Reviewer  : Dario de Judicibus (DEJUDICI at ROMEPPC)
  11. **  Created   : 10 Jul 1992
  12. **  Updated   : 22 Sep 1993
  13. **  Version   : 3.22
  14. **  Content   : Public types
  15. **
  16. */
  17.  #ifndef  znlTYPES
  18.  #define  znlTYPES  0
  19.  
  20.  typedef struct         // Include advanced information for Country
  21.  {
  22.    COUNTRYINFO CtryInfo                ;  // Standard country info structure
  23.    ULONG       Measurement             ;  // Measurement
  24.    INT         LeadZero                ;  // Leading zeros (0-no 1-yes)
  25.    CHAR        psz1159[znlSHORTBUFFER] ;  // AM time indicator
  26.    CHAR        psz2359[znlSHORTBUFFER] ;  // PM time indicator
  27.    USHORT      Type                    ;  // Type of information (see ZNLDEFS.H)
  28.  }
  29.  znlCOUNTRYINFO, *znlPCOUNTRYINFO ;
  30.  
  31.  #endif
  32.