]> git.eshelyaron.com Git - emacs.git/commitdiff
(dos_timezone_offset, dos_display_scancodes,
authorKim F. Storm <storm@cua.dk>
Wed, 11 Oct 1995 15:17:44 +0000 (15:17 +0000)
committerKim F. Storm <storm@cua.dk>
Wed, 11 Oct 1995 15:17:44 +0000 (15:17 +0000)
dos_menubar_clock, dos_hyper_key, dos_super_key, dos_keypad_mode,
dos_keyboard_layout, dos_decimal_point): New variables.

src/dosfns.h

index 01d2cdd4386a05ec9484cd68ee7538b413cb1078..7e04a6bb835e343a533e96659d784118fd546880 100644 (file)
@@ -18,9 +18,23 @@ You should have received a copy of the GNU General Public License
 along with GNU Emacs; see the file COPYING.  If not, write to
 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
+extern int dos_hyper_key;
+extern int dos_super_key;
+extern int dos_decimal_point;
+extern int dos_keypad_mode;
+
+extern int dos_keyboard_layout;
 extern int dos_country_code;
 extern int dos_codepage;
+extern int dos_timezone_offset;
+
+#define DOS_COUNTRY_INFO 34    /* no of bytes returned by dos int 38h */
+extern unsigned char dos_country_info[DOS_COUNTRY_INFO];
+
 extern Lisp_Object Vdos_version;
 #ifndef HAVE_X_WINDOWS
+extern Lisp_Object Vdos_display_scancodes;
+extern Lisp_Object Vdos_menubar_clock;
+extern Lisp_Object Vdos_timer_hooks;
 extern Lisp_Object Qmsdos_color_translate;
 #endif