home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / coders / jËzyki_programowania / amigae / e_v3.2a / modulessrc / prefs / locale.e < prev    next >
Text File  |  1977-12-31  |  1KB  |  54 lines

  1. OPT MODULE
  2. OPT EXPORT
  3.  
  4. CONST ID_LCLE=$4C434C45,
  5.       ID_CTRY=$43545259
  6.  
  7. OBJECT countryprefs
  8.   reserved[4]:ARRAY OF LONG
  9.   countrycode:LONG
  10.   telephonecode:LONG
  11.   measuringsystem:CHAR
  12. -> Um, have to fiddle alignment in .m file
  13.   datetimeformat[80]:ARRAY
  14.   dateformat[40]:ARRAY
  15.   timeformat[40]:ARRAY
  16.   shortdatetimeformat[80]:ARRAY
  17.   shortdateformat[40]:ARRAY
  18.   shorttimeformat[40]:ARRAY
  19.   decimalpoint[10]:ARRAY
  20.   groupseparator[10]:ARRAY
  21.   fracgroupseparator[10]:ARRAY
  22.   grouping[10]:ARRAY
  23.   fracgrouping[10]:ARRAY
  24.   mondecimalpoint[10]:ARRAY
  25.   mongroupseparator[10]:ARRAY
  26.   monfracgroupseparator[10]:ARRAY
  27.   mongrouping[10]:ARRAY
  28.   monfracgrouping[10]:ARRAY
  29.   monfracdigits:CHAR
  30.   monintfracdigits:CHAR
  31.   moncs[10]:ARRAY
  32.   monsmallcs[10]:ARRAY
  33.   monintcs[10]:ARRAY
  34.   monpositivesign[10]:ARRAY
  35.   monpositivespacesep:CHAR
  36.   monpositivesignpos:CHAR
  37.   monpositivecspos:CHAR
  38. -> Um, have to fiddle alignment in .m file
  39.   monnegativesign[10]:ARRAY
  40.   monnegativespacesep:CHAR
  41.   monnegativesignpos:CHAR
  42.   monnegativecspos:CHAR
  43.   calendartype:CHAR
  44. ENDOBJECT     /* SIZEOF=504 */
  45.  
  46. OBJECT localeprefs
  47.   reserved[4]:ARRAY OF LONG
  48.   countryname[32]:ARRAY
  49.   preferredlanguages[300]:ARRAY
  50.   gmtoffset:LONG
  51.   flags:LONG
  52.   countrydata:countryprefs
  53. ENDOBJECT     /* SIZEOF=860 */
  54.