Mercurial > emacs
annotate src/msdos.h @ 26856:c629af522c09
(Flength): The length of char-table is MAX_CHAR.
(concat): Adjusted for the change of CHAR_STRING.
(Ffillarray): Adjusted for the change of CHAR_STRING.
(Fset_char_table_default): Delete codes for a composite character.
(hash_put): Return hash index.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 15 Dec 1999 00:11:56 +0000 |
parents | f5dded41adcc |
children | c56e0e887ba4 |
rev | line source |
---|---|
5503 | 1 /* MS-DOS specific C utilities, interface. |
2 Copyright (C) 1993 Free Software Foundation, Inc. | |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
5503 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13395
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13395
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
5503 | 20 |
9572 | 21 #ifndef _MSDOS_H_ |
22 #define _MSDOS_H_ | |
23 | |
5503 | 24 #include <dpmi.h> |
25 | |
26 int dos_ttraw (); | |
27 int dos_ttcooked (); | |
13178 | 28 int dos_get_saved_screen (char **, int *, int *); |
29 int dos_set_keyboard (int, int); | |
14285
6081221167de
(dos_set_window_size): Prototype for a new function.
Karl Heuer <kwzh@gnu.org>
parents:
14186
diff
changeset
|
30 void dos_set_window_size (int *, int *); |
13178 | 31 |
5503 | 32 int getdefdir (int, char*); |
33 void unixtodos_filename (char *); | |
34 void dostounix_filename (char *); | |
7822
17b96e349369
Add template for rootrelativepath.
Richard M. Stallman <rms@gnu.org>
parents:
7604
diff
changeset
|
35 char *rootrelativepath (char *); |
5503 | 36 void init_environment (); |
37 void internal_terminal_init (); | |
38 void ctrl_break_func (_go32_dpmi_registers *); | |
39 void install_ctrl_break_check (); | |
40 | |
41 extern int have_mouse; | |
42 void mouse_init (); | |
43 void mouse_on (); | |
44 void mouse_off (); | |
45 void mouse_moveto (int, int); | |
9572 | 46 |
47 #ifndef HAVE_X_WINDOWS | |
48 /* Dummy types. */ | |
49 typedef int XFontStruct; | |
50 typedef int GC; | |
51 typedef int Pixmap; | |
52 typedef int Display; | |
53 typedef int Window; | |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
54 typedef int XRectangle; |
9572 | 55 #define PIX_TYPE int |
56 #define XDISPLAY | |
57 | |
58 /* This is a cut-down version of the one in xterm.h, which see. */ | |
13395
c18547cf191f
(struct x_output): Rename from struct x_display.
Karl Heuer <kwzh@gnu.org>
parents:
13178
diff
changeset
|
59 struct x_output |
9572 | 60 { |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
61 int left_pos; /* used in xmenu_show (xmenu.c) */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
62 int top_pos; /* ditto */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
63 int line_height; /* used in x-popup-menu (xmenu.c) */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
64 PIX_TYPE background_pixel; /* used in xfaces.c and lots of other places */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
65 PIX_TYPE foreground_pixel; /* ditto */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
66 XFontStruct *font; /* used in x-popup-menu (xmenu.c) */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
67 Window busy_window; /* currently unused (but maybe some day) */ |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
68 unsigned busy_p : 1; /* ditto */ |
9572 | 69 }; |
70 | |
13395
c18547cf191f
(struct x_output): Rename from struct x_display.
Karl Heuer <kwzh@gnu.org>
parents:
13178
diff
changeset
|
71 extern struct x_output the_only_x_display; |
9572 | 72 |
73 #define FRAME_X_DISPLAY(f) ((Display *) 0) | |
74 #define FRAME_FOREGROUND_PIXEL(f) (the_only_x_display.foreground_pixel) | |
75 #define FRAME_BACKGROUND_PIXEL(f) (the_only_x_display.background_pixel) | |
76 #define FRAME_FONT(f) (the_only_x_display.font) | |
77 | |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
78 /* Prototypes. */ |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
79 |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
80 /* Forward declarations for prototypes. */ |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
81 struct frame; |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
82 struct window; |
25111
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
83 |
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
84 /* From xterm.c; emulated on msdos.c */ |
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
85 |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
86 extern void pixel_to_glyph_coords P_ ((struct frame *f, int pix_x, int pix_y, |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
87 int *x, int *y, XRectangle *bounds, |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
88 int noclip)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
89 extern void glyph_to_pixel_coords P_ ((struct frame *f, int x, int y, |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
90 int *pix_x, int *pix_y)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
91 |
25111
36169f5d88da
Remove redundant declarations (most of them are now in
Eli Zaretskii <eliz@gnu.org>
parents:
21784
diff
changeset
|
92 /* Defined in xfns.c; emulated on msdos.c */ |
21784
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
93 |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
94 extern int have_menus_p P_ ((void)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
95 extern void x_set_menu_bar_lines P_ ((struct frame *, Lisp_Object, Lisp_Object)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
96 extern int x_pixel_width P_ ((struct frame *)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
97 extern int x_pixel_height P_ ((struct frame *)); |
8de4e2a8cc62
[!HAVE_X_WINDOWS]: Add a dummy typedef for XRectangle
Eli Zaretskii <eliz@gnu.org>
parents:
15386
diff
changeset
|
98 |
9572 | 99 #define XFreeGC (void) |
100 #define x_destroy_bitmap(p1,p2) | |
101 #define load_pixmap(p1,p2,p3,p4) (0) | |
102 #define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9) | |
26729
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
103 #define DisplayWidth(p1,p2) (SELECTED_FRAME()->width) |
f5dded41adcc
Changes for automatic remapping of X colors on terminal frames:
Eli Zaretskii <eliz@gnu.org>
parents:
25111
diff
changeset
|
104 #define DisplayHeight(p1,p2) (SELECTED_FRAME()->height) |
9572 | 105 #define XMenuSetAEQ (void) |
106 #define XMenuSetFreeze (void) | |
107 #define XMenuRecompute (void) | |
108 #define FONT_WIDTH(foo) 1 | |
109 #define XM_FAILURE -1 | |
110 #define XM_SUCCESS 1 | |
111 #define XM_NO_SELECT 2 | |
112 #define XM_IA_SELECT 3 | |
113 #define ButtonReleaseMask 0 | |
114 | |
115 typedef struct x_menu_struct | |
116 { | |
117 int count; | |
118 char **text; | |
119 struct x_menu_struct **submenu; | |
120 int *panenumber; /* Also used as enable. */ | |
121 int allocated; | |
122 int panecount; | |
123 int width; | |
124 } XMenu; | |
125 | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
126 XMenu *XMenuCreate (Display *, Window, char *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
127 int XMenuAddPane (Display *, XMenu *, char *, int); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
128 int XMenuAddSelection (Display *, XMenu *, int, int, char *, int); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
129 void XMenuLocate (Display *, XMenu *, int, int, int, int, |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
130 int *, int *, int *, int *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
131 int XMenuActivate (Display *, XMenu *, int *, int *, int, int, unsigned, char **); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
132 void XMenuDestroy (Display *, XMenu *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
133 |
9572 | 134 #endif /* not HAVE_X_WINDOWS */ |
135 | |
136 #endif /* not _MSDOS_H_ */ |