comparison src/dosfns.c @ 43713:f92c4d87863a

Change defvar_int def and vars to use EMACS_INT instead of just int.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 04 Mar 2002 23:41:00 +0000
parents ee8ae85f22ae
children 425d5cebd73c
comparison
equal deleted inserted replaced
43712:223f1f5d160d 43713:f92c4d87863a
238 238
239 return Qt; 239 return Qt;
240 } 240 }
241 241
242 /* country info */ 242 /* country info */
243 int dos_country_code; 243 EMACS_INT dos_country_code;
244 int dos_codepage; 244 EMACS_INT dos_codepage;
245 int dos_timezone_offset; 245 EMACS_INT dos_timezone_offset;
246 int dos_decimal_point; 246 EMACS_INT dos_decimal_point;
247 int dos_keyboard_layout; 247 EMACS_INT dos_keyboard_layout;
248 unsigned char dos_country_info[DOS_COUNTRY_INFO]; 248 unsigned char dos_country_info[DOS_COUNTRY_INFO];
249 static unsigned char usa_country_info[DOS_COUNTRY_INFO] = { 249 static unsigned char usa_country_info[DOS_COUNTRY_INFO] = {
250 0, 0, /* date format */ 250 0, 0, /* date format */
251 '$', 0, 0, 0, 0, /* currency string */ 251 '$', 0, 0, 0, 0, /* currency string */
252 ',', 0, /* thousands separator */ 252 ',', 0, /* thousands separator */
259 0, 0, 0, 0, /* address of case map routine, GPF if used */ 259 0, 0, 0, 0, /* address of case map routine, GPF if used */
260 ' ', 0, /* data-list separator (?) */ 260 ' ', 0, /* data-list separator (?) */
261 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* reserved */ 261 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 /* reserved */
262 }; 262 };
263 263
264 int dos_hyper_key; 264 EMACS_INT dos_hyper_key;
265 int dos_super_key; 265 EMACS_INT dos_super_key;
266 int dos_keypad_mode; 266 EMACS_INT dos_keypad_mode;
267 267
268 Lisp_Object Vdos_version; 268 Lisp_Object Vdos_version;
269 Lisp_Object Vdos_display_scancodes; 269 Lisp_Object Vdos_display_scancodes;
270 270
271 #ifndef HAVE_X_WINDOWS 271 #ifndef HAVE_X_WINDOWS