diff options
| author | Chong Yidong | 2008-09-18 18:16:04 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-09-18 18:16:04 +0000 |
| commit | a53400f35062ba30fcfbe9ef62957dfe0b43fb5d (patch) | |
| tree | 9334eda9bd6d325322c7ba7a67893ac777a346ff | |
| parent | a0fe6cca4f8a35681eb41bb2ccfcfd1309662961 (diff) | |
| download | emacs-a53400f35062ba30fcfbe9ef62957dfe0b43fb5d.tar.gz emacs-a53400f35062ba30fcfbe9ef62957dfe0b43fb5d.zip | |
(w32_display_info): Remove `height', `width', `height_in', and
`width_in' members.
| -rw-r--r-- | src/w32term.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/w32term.h b/src/w32term.h index f796e597bef..368beec6b45 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -107,10 +107,6 @@ struct w32_display_info | |||
| 107 | /* Number of bits per pixel on this screen. */ | 107 | /* Number of bits per pixel on this screen. */ |
| 108 | int n_cbits; | 108 | int n_cbits; |
| 109 | 109 | ||
| 110 | /* Dimensions of this screen. */ | ||
| 111 | int height, width; | ||
| 112 | int height_in,width_in; | ||
| 113 | |||
| 114 | /* Mask of things that cause the mouse to be grabbed. */ | 110 | /* Mask of things that cause the mouse to be grabbed. */ |
| 115 | int grabbed; | 111 | int grabbed; |
| 116 | 112 | ||
| @@ -237,6 +233,10 @@ Lisp_Object display_x_get_resource P_ ((struct w32_display_info *, | |||
| 237 | Lisp_Object, Lisp_Object)); | 233 | Lisp_Object, Lisp_Object)); |
| 238 | 234 | ||
| 239 | extern struct w32_display_info *w32_term_init (); | 235 | extern struct w32_display_info *w32_term_init (); |
| 236 | |||
| 237 | extern int x_display_pixel_height P_ ((struct w32_display_info *)); | ||
| 238 | extern int x_display_pixel_width P_ ((struct w32_display_info *)); | ||
| 239 | |||
| 240 | 240 | ||
| 241 | #define PIX_TYPE COLORREF | 241 | #define PIX_TYPE COLORREF |
| 242 | 242 | ||