home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / FNCNTRY.H < prev    next >
C/C++ Source or Header  |  1990-09-21  |  961b  |  45 lines

  1. /*
  2.     fncntry.h    gam     5/31/89
  3.  
  4.     Typedefs, etc. for the ocountry_struct.
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1989 by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      6/06/89 gam    Created
  13.      8/15/89 gam    Took out #include's of stdio.h and string.h
  14.      8/01/90 jdc    added time_fmt field to the ocountry_struct
  15.      8/27/90 jmd    added errmsg
  16.      9/13/90 jmd    added press esc msg
  17.      9/21/90 pmcm    changed extern to OEXTERN for ocountry
  18. */
  19.  
  20. #include <ctype.h>
  21.  
  22. #define        MMDDYY        0
  23. #define        DDMMYY        1
  24. #define        YYMMDD        2
  25.  
  26. #define        TIME_24        0
  27. #define        TIME_12        1
  28.  
  29. typedef struct _ocountry {
  30.     char        *yes_ptr;
  31.     char       *no_ptr;
  32.     int            date_fmt;
  33.     int            time_fmt;
  34.     char        dec_char;
  35.     char        sep_char;
  36.  
  37.     char        *errmsg;                    /* field function error message */
  38.     char        *helpxrefmsg;               /* help xref message */
  39.     char        *pressesc;               /* Press Escape message */
  40. } ocountry_struct;
  41.  
  42. OEXTERN ocountry_struct ocountry;
  43.  
  44.  
  45.