Mercurial > hg > xemacs-beta
comparison src/device-msw.c @ 269:b2472a1930f2 r20-5b33
Import from CVS: tag r20-5b33
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:27:19 +0200 |
parents | 966663fcf606 |
children | c5d627a313b1 |
comparison
equal
deleted
inserted
replaced
268:6ced69ccd85f | 269:b2472a1930f2 |
---|---|
54 exactly, at the expense of slower operation. Since true hard links | 54 exactly, at the expense of slower operation. Since true hard links |
55 are supported on NTFS volumes, this is only relevant on NT. */ | 55 are supported on NTFS volumes, this is only relevant on NT. */ |
56 Lisp_Object Vmswindows_get_true_file_attributes; | 56 Lisp_Object Vmswindows_get_true_file_attributes; |
57 | 57 |
58 Lisp_Object Qinit_pre_mswindows_win, Qinit_post_mswindows_win; | 58 Lisp_Object Qinit_pre_mswindows_win, Qinit_post_mswindows_win; |
59 | |
60 | 59 |
61 static void | 60 static void |
62 mswindows_init_device (struct device *d, Lisp_Object props) | 61 mswindows_init_device (struct device *d, Lisp_Object props) |
63 { | 62 { |
64 WNDCLASSEX wc; | 63 WNDCLASSEX wc; |
164 mswindows_device_color_cells (struct device *d) | 163 mswindows_device_color_cells (struct device *d) |
165 { | 164 { |
166 return(DEVICE_MSWINDOWS_CELLS(d)); | 165 return(DEVICE_MSWINDOWS_CELLS(d)); |
167 } | 166 } |
168 | 167 |
168 static unsigned int | |
169 mswindows_device_implementation_flags (void) | |
170 { | |
171 return XDEVIMPF_PIXEL_GEOMETRY; | |
172 } | |
169 | 173 |
170 /************************************************************************/ | 174 /************************************************************************/ |
171 /* initialization */ | 175 /* initialization */ |
172 /************************************************************************/ | 176 /************************************************************************/ |
173 | 177 |
202 CONSOLE_HAS_METHOD (mswindows, device_pixel_height); | 206 CONSOLE_HAS_METHOD (mswindows, device_pixel_height); |
203 CONSOLE_HAS_METHOD (mswindows, device_mm_width); | 207 CONSOLE_HAS_METHOD (mswindows, device_mm_width); |
204 CONSOLE_HAS_METHOD (mswindows, device_mm_height); | 208 CONSOLE_HAS_METHOD (mswindows, device_mm_height); |
205 CONSOLE_HAS_METHOD (mswindows, device_bitplanes); | 209 CONSOLE_HAS_METHOD (mswindows, device_bitplanes); |
206 CONSOLE_HAS_METHOD (mswindows, device_color_cells); | 210 CONSOLE_HAS_METHOD (mswindows, device_color_cells); |
211 CONSOLE_HAS_METHOD (mswindows, device_implementation_flags); | |
207 } | 212 } |
208 | 213 |
209 void | 214 void |
210 vars_of_device_mswindows (void) | 215 vars_of_device_mswindows (void) |
211 { | 216 { |