1 /* BEGIN INCLUDE FILE ..... time_defaults_.incl.pl1 ..... 03/29/83 J Falksen */
 2 
 3 
 4 /****^  HISTORY COMMENTS:
 5   1) change(86-07-18,GDixon), approve(86-07-25,MCR7495),
 6      audit(86-07-25,Martinson), install(86-08-19,MR12.0-1120):
 7      Add declaration for time_defaults_$debug.
 8                                                    END HISTORY COMMENTS */
 9 
10 
11 /* This include file defines the values in the time_default_ table.  This    */
12 /*  table declares the name and index (in time_info_) of the user-specified, */
13 /*  per-process default time language.  Also, the full name, acronym, index  */
14 /*  and time delta (difference from GMT) of the default time zone. The       */
15 /*  per-process date_time, date, and time format string are here also.       */
16 
17 /**** date_time_$format control strings                                      */
18    dcl time_defaults_$date_time         char (64)var ext static;
19    dcl time_defaults_$date              char (64)var ext static;
20    dcl time_defaults_$time              char (64)var ext static;
21 
22 /**** Name of default language in which dates are expressed.                 */
23    dcl time_defaults_$language          char(32) ext static;
24 
25 /**** Value of ti_language_names.index for the default language.             */
26    dcl time_defaults_$language_index    fixed bin ext static;
27 
28 /**** full name of the default time zone.                                    */
29    dcl time_defaults_$zone_long         char(64) var ext static;
30 
31 /**** acronym for default time zone.                                         */
32   dcl time_defaults_$zone_short         char(4) var ext static;
33 
34 /**** offset, in microseconds, of default time zone from GMT                 */
35   dcl time_defaults_$zone_delta         fixed bin(71) ext static;
36 
37 /**** index, in time_info_$zone_names, of the default time zone.             */
38   dcl time_defaults_$zone_index         fixed bin ext static;
39 
40 /**** debug switch controlling debugging within the date/time software.
41       Mainly of use in convert_date_to_binary_.                              */
42   dcl time_defaults_$debug              bit(1) aligned ext static;
43 
44 /* END INCLUDE FILE ..... time_defaults_.incl.pl1 ..... */