(SCROLL_BAR_FACE_ID, BORDER_FACE_ID,
[bpt/emacs.git] / src / dosfns.h
... / ...
CommitLineData
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
9the Free Software Foundation; either version 2, or (at your option)
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
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
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;
28extern int dos_country_code;
29extern int dos_codepage;
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
35extern Lisp_Object Vdos_version;
36extern Lisp_Object Vdos_windows_version;
37#ifndef HAVE_X_WINDOWS
38extern Lisp_Object Vdos_display_scancodes;
39extern Lisp_Object Qmsdos_color_translate;
40
41extern int msdos_stdcolor_idx P_ ((const char *));
42extern char *msdos_stdcolor_name P_ ((int));
43#endif