comparison src/xterm.h @ 1531:86202f01266d

* xterm.h (x_screen_count, x_release, x_screen_height, x_screen_height_mm, x_screen_width, x_screen_width_mm, x_save_under, x_screen_planes): Declare this as ints, to match their definitions in xterm.c.
author Jim Blandy <jimb@redhat.com>
date Sat, 31 Oct 1992 05:43:42 +0000
parents b8e32247c590
children 6ba3bca4c3de
comparison
equal deleted inserted replaced
1530:a7f8a1fe258e 1531:86202f01266d
199 199
200 #ifdef HAVE_X11 200 #ifdef HAVE_X11
201 /* Variables associated with the X display screen this emacs is using. */ 201 /* Variables associated with the X display screen this emacs is using. */
202 202
203 /* How many screens this X display has. */ 203 /* How many screens this X display has. */
204 extern Lisp_Object x_screen_count; 204 extern int x_screen_count;
205 205
206 /* The vendor supporting this X server. */ 206 /* The vendor supporting this X server. */
207 extern Lisp_Object Vx_vendor; 207 extern Lisp_Object Vx_vendor;
208 208
209 /* The vendor's release number for this X server. */ 209 /* The vendor's release number for this X server. */
210 extern Lisp_Object x_release; 210 extern int x_release;
211 211
212 /* Height of this X screen in pixels. */ 212 /* Height of this X screen in pixels. */
213 extern Lisp_Object x_screen_height; 213 extern int x_screen_height;
214 214
215 /* Height of this X screen in millimeters. */ 215 /* Height of this X screen in millimeters. */
216 extern Lisp_Object x_screen_height_mm; 216 extern int x_screen_height_mm;
217 217
218 /* Width of this X screen in pixels. */ 218 /* Width of this X screen in pixels. */
219 extern Lisp_Object x_screen_width; 219 extern int x_screen_width;
220 220
221 /* Width of this X screen in millimeters. */ 221 /* Width of this X screen in millimeters. */
222 extern Lisp_Object x_screen_width_mm; 222 extern int x_screen_width_mm;
223 223
224 /* Does this X screen do backing store? */ 224 /* Does this X screen do backing store? */
225 extern Lisp_Object Vx_backing_store; 225 extern Lisp_Object Vx_backing_store;
226 226
227 /* Does this X screen do save-unders? */ 227 /* Does this X screen do save-unders? */
228 extern Lisp_Object x_save_under; 228 extern int x_save_under;
229 229
230 /* Number of planes for this screen. */ 230 /* Number of planes for this screen. */
231 extern Lisp_Object x_screen_planes; 231 extern int x_screen_planes;
232 232
233 /* X Visual type of this screen. */ 233 /* X Visual type of this screen. */
234 extern Lisp_Object Vx_screen_visual; 234 extern Lisp_Object Vx_screen_visual;
235 235
236 #endif /* HAVE_X11 */ 236 #endif /* HAVE_X11 */