Mercurial > emacs
annotate src/msdos.h @ 13823:881e5c4a01cb
(save-buffer): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 23 Dec 1995 07:34:59 +0000 |
parents | c18547cf191f |
children | ee40177f6c68 |
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 | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
9572 | 20 #ifndef _MSDOS_H_ |
21 #define _MSDOS_H_ | |
22 | |
5503 | 23 #include <dpmi.h> |
24 | |
25 int dos_ttraw (); | |
26 int dos_ttcooked (); | |
13178 | 27 int dos_get_saved_screen (char **, int *, int *); |
28 int dos_set_keyboard (int, int); | |
29 | |
5503 | 30 int getdefdir (int, char*); |
31 void unixtodos_filename (char *); | |
32 void dostounix_filename (char *); | |
7822
17b96e349369
Add template for rootrelativepath.
Richard M. Stallman <rms@gnu.org>
parents:
7604
diff
changeset
|
33 char *rootrelativepath (char *); |
5503 | 34 void init_environment (); |
35 void internal_terminal_init (); | |
36 void ctrl_break_func (_go32_dpmi_registers *); | |
37 void install_ctrl_break_check (); | |
38 | |
39 extern int have_mouse; | |
40 void mouse_init (); | |
41 void mouse_on (); | |
42 void mouse_off (); | |
43 void mouse_moveto (int, int); | |
9572 | 44 |
45 #ifndef HAVE_X_WINDOWS | |
46 /* Dummy types. */ | |
47 typedef int XFontStruct; | |
48 typedef int GC; | |
49 typedef int Pixmap; | |
50 typedef int Display; | |
51 typedef int Window; | |
52 #define PIX_TYPE int | |
53 #define XDISPLAY | |
54 | |
55 /* 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
|
56 struct x_output |
9572 | 57 { |
58 int left_pos; | |
59 int top_pos; | |
60 int line_height; | |
61 PIX_TYPE background_pixel; | |
62 PIX_TYPE foreground_pixel; | |
63 XFontStruct *font; | |
64 struct face **param_faces; | |
65 int n_param_faces; | |
66 struct face **computed_faces; | |
67 int n_computed_faces; | |
68 int size_computed_faces; | |
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 extern Display *x_current_display; |
73 | |
74 #define FRAME_PARAM_FACES(f) (the_only_x_display.param_faces) | |
75 #define FRAME_N_PARAM_FACES(f) (the_only_x_display.n_param_faces) | |
76 #define FRAME_DEFAULT_PARAM_FACE(f) (FRAME_PARAM_FACES (f)[0]) | |
77 #define FRAME_MODE_LINE_PARAM_FACE(f) (FRAME_PARAM_FACES (f)[1]) | |
78 #define FRAME_COMPUTED_FACES(f) (the_only_x_display.computed_faces) | |
79 #define FRAME_N_COMPUTED_FACES(f) (the_only_x_display.n_computed_faces) | |
80 #define FRAME_SIZE_COMPUTED_FACES(f) (the_only_x_display.size_computed_faces) | |
81 #define FRAME_DEFAULT_FACE(f) (the_only_x_display.computed_faces[0]) | |
82 #define FRAME_MODE_LINE_FACE(f) (the_only_x_display.computed_faces[1]) | |
83 #define FRAME_X_DISPLAY(f) ((Display *) 0) | |
84 #define FRAME_FOREGROUND_PIXEL(f) (the_only_x_display.foreground_pixel) | |
85 #define FRAME_BACKGROUND_PIXEL(f) (the_only_x_display.background_pixel) | |
86 #define FRAME_FONT(f) (the_only_x_display.font) | |
87 | |
88 #define XFreeGC (void) | |
89 #define same_size_fonts(foo,bar) (1) | |
90 #define unload_font(p1,p2) | |
91 #define unload_color(p1,p2) | |
92 #define x_destroy_bitmap(p1,p2) | |
93 #define load_pixmap(p1,p2,p3,p4) (0) | |
94 #define XGetGeometry(p1,p2,p3,p4,p5,p6,p7,p8,p9) | |
95 #define DisplayWidth(p1,p2) (the_only_frame.width) | |
96 #define DisplayHeight(p1,p2) (the_only_frame.height) | |
97 #define XMenuSetAEQ (void) | |
98 #define XMenuSetFreeze (void) | |
99 #define XMenuRecompute (void) | |
100 #define FONT_WIDTH(foo) 1 | |
101 /* Function `getcbrk' is the most harmless I can think of right now... */ | |
102 #define check_x if (FRAME_TERMCAP_P (bar)) error ("Not running under a windows system."); else getcbrk | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
103 #define x_mouse_leave getcbrk |
9572 | 104 #define XM_FAILURE -1 |
105 #define XM_SUCCESS 1 | |
106 #define XM_NO_SELECT 2 | |
107 #define XM_IA_SELECT 3 | |
108 #define ButtonReleaseMask 0 | |
109 | |
110 typedef struct x_menu_struct | |
111 { | |
112 int count; | |
113 char **text; | |
114 struct x_menu_struct **submenu; | |
115 int *panenumber; /* Also used as enable. */ | |
116 int allocated; | |
117 int panecount; | |
118 int width; | |
119 } XMenu; | |
120 | |
10503
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
121 XMenu *XMenuCreate (Display *, Window, char *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
122 int XMenuAddPane (Display *, XMenu *, char *, int); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
123 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
|
124 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
|
125 int *, int *, int *, int *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
126 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
|
127 void XMenuDestroy (Display *, XMenu *); |
4d94f31dc555
(x_mouse_leave): Add neutralizing define.
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
128 |
9572 | 129 #endif /* not HAVE_X_WINDOWS */ |
130 | |
131 #endif /* not _MSDOS_H_ */ |