comparison src/dosfns.h @ 13181:fc4f18921b24

(dos_timezone_offset, dos_display_scancodes, dos_menubar_clock, dos_hyper_key, dos_super_key, dos_keypad_mode, dos_keyboard_layout, dos_decimal_point): New variables.
author Kim F. Storm <storm@cua.dk>
date Wed, 11 Oct 1995 15:17:44 +0000
parents 8a1bd0598b49
children 555d1d8fafb9
comparison
equal deleted inserted replaced
13180:59663cba4b02 13181:fc4f18921b24
16 16
17 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to 18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ 19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 20
21 extern int dos_hyper_key;
22 extern int dos_super_key;
23 extern int dos_decimal_point;
24 extern int dos_keypad_mode;
25
26 extern int dos_keyboard_layout;
21 extern int dos_country_code; 27 extern int dos_country_code;
22 extern int dos_codepage; 28 extern int dos_codepage;
29 extern int dos_timezone_offset;
30
31 #define DOS_COUNTRY_INFO 34 /* no of bytes returned by dos int 38h */
32 extern unsigned char dos_country_info[DOS_COUNTRY_INFO];
33
23 extern Lisp_Object Vdos_version; 34 extern Lisp_Object Vdos_version;
24 #ifndef HAVE_X_WINDOWS 35 #ifndef HAVE_X_WINDOWS
36 extern Lisp_Object Vdos_display_scancodes;
37 extern Lisp_Object Vdos_menubar_clock;
38 extern Lisp_Object Vdos_timer_hooks;
25 extern Lisp_Object Qmsdos_color_translate; 39 extern Lisp_Object Qmsdos_color_translate;
26 #endif 40 #endif