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