*** empty log message ***
[bpt/emacs.git] / src / dosfns.h
... / ...
CommitLineData
1/* MS-DOS specific Lisp utilities interface.
2 Coded by Manabu Higashida, 1991.
3 Modified by Morten Welinder, 1993-1994.
4
5 Copyright (C) 1991, 1994, 1995, 1997, 1999
6 Free Software Foundation, Inc.
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
12the Free Software Foundation; either version 2, or (at your option)
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
22the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23Boston, MA 02111-1307, USA. */
24
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;
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
38extern Lisp_Object Vdos_version;
39extern Lisp_Object Vdos_windows_version;
40#ifndef HAVE_X_WINDOWS
41extern Lisp_Object Vdos_display_scancodes;
42
43extern int msdos_stdcolor_idx P_ ((const char *));
44extern Lisp_Object msdos_stdcolor_name P_ ((int));
45#endif