*** empty log message ***
[bpt/emacs.git] / src / dosfns.h
CommitLineData
1b94449f
RS
1/* MS-DOS specific Lisp utilities interface.
2 Coded by Manabu Higashida, 1991.
3 Copyright (C) 1991 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
edfc0d45 9the Free Software Foundation; either version 2, or (at your option)
1b94449f
RS
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
1b94449f 21
03d50ea5
KS
22extern int dos_hyper_key;
23extern int dos_super_key;
24extern int dos_decimal_point;
25extern int dos_keypad_mode;
26
27extern int dos_keyboard_layout;
1b94449f
RS
28extern int dos_country_code;
29extern int dos_codepage;
03d50ea5
KS
30extern int dos_timezone_offset;
31
32#define DOS_COUNTRY_INFO 34 /* no of bytes returned by dos int 38h */
33extern unsigned char dos_country_info[DOS_COUNTRY_INFO];
34
1b94449f 35extern Lisp_Object Vdos_version;
05d059c2 36extern Lisp_Object Vdos_windows_version;
87485d6f 37#ifndef HAVE_X_WINDOWS
03d50ea5 38extern Lisp_Object Vdos_display_scancodes;
ab39b7a5
EZ
39
40extern int msdos_stdcolor_idx P_ ((const char *));
2d764c78 41extern Lisp_Object msdos_stdcolor_name P_ ((int));
87485d6f 42#endif