aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm1995-10-11 15:17:44 +0000
committerKim F. Storm1995-10-11 15:17:44 +0000
commit03d50ea516614d5eb775da32a3713b77341ee277 (patch)
treebc1a1e41fda0ded57153d45520e0f407a013e432 /src
parent5f08dc787a1bff660f24806daebc42b5aeb39d2d (diff)
downloademacs-03d50ea516614d5eb775da32a3713b77341ee277.tar.gz
emacs-03d50ea516614d5eb775da32a3713b77341ee277.zip
(dos_timezone_offset, dos_display_scancodes,
dos_menubar_clock, dos_hyper_key, dos_super_key, dos_keypad_mode, dos_keyboard_layout, dos_decimal_point): New variables.
Diffstat (limited to 'src')
-rw-r--r--src/dosfns.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/dosfns.h b/src/dosfns.h
index 01d2cdd4386..7e04a6bb835 100644
--- a/src/dosfns.h
+++ b/src/dosfns.h
@@ -18,9 +18,23 @@ You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to 18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ 19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20 20
21extern int dos_hyper_key;
22extern int dos_super_key;
23extern int dos_decimal_point;
24extern int dos_keypad_mode;
25
26extern int dos_keyboard_layout;
21extern int dos_country_code; 27extern int dos_country_code;
22extern int dos_codepage; 28extern int dos_codepage;
29extern int dos_timezone_offset;
30
31#define DOS_COUNTRY_INFO 34 /* no of bytes returned by dos int 38h */
32extern unsigned char dos_country_info[DOS_COUNTRY_INFO];
33
23extern Lisp_Object Vdos_version; 34extern Lisp_Object Vdos_version;
24#ifndef HAVE_X_WINDOWS 35#ifndef HAVE_X_WINDOWS
36extern Lisp_Object Vdos_display_scancodes;
37extern Lisp_Object Vdos_menubar_clock;
38extern Lisp_Object Vdos_timer_hooks;
25extern Lisp_Object Qmsdos_color_translate; 39extern Lisp_Object Qmsdos_color_translate;
26#endif 40#endif