Merge branch 'master' into comment-cache
[emacs.git] / src / dosfns.h
blob266430d71e576ba306f7346e077e47c7ddf06a31
1 /* MS-DOS specific Lisp utilities interface.
2 Coded by Manabu Higashida, 1991.
3 Modified by Morten Welinder, 1993-1994.
5 Copyright (C) 1991, 1994-1995, 1997, 1999, 2001-2017 Free Software
6 Foundation, Inc.
8 This file is part of GNU Emacs.
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or (at
13 your option) any later version.
15 GNU Emacs is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23 #define DOS_COUNTRY_INFO 34 /* no of bytes returned by dos int 38h */
24 extern unsigned char dos_country_info[DOS_COUNTRY_INFO];
25 extern int dos_memory_info (unsigned long *, unsigned long *,
26 unsigned long *, unsigned long *);
27 void dos_cleanup (void);
28 void syms_of_dosfns (void);
29 void init_dosfns (void);
31 #ifndef HAVE_X_WINDOWS
32 extern int msdos_stdcolor_idx (const char *);
33 extern Lisp_Object msdos_stdcolor_name (int);
34 extern void x_set_title (struct frame *, Lisp_Object);
35 #endif