Mercurial > hg > xemacs-beta
comparison src/device-msw.c @ 414:da8ed4261e83 r21-2-15
Import from CVS: tag r21-2-15
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:21:38 +0200 |
parents | 697ef44129c6 |
children | 11054d720c21 |
comparison
equal
deleted
inserted
replaced
413:901169e5ca31 | 414:da8ed4261e83 |
---|---|
298 void | 298 void |
299 syms_of_device_mswindows (void) | 299 syms_of_device_mswindows (void) |
300 { | 300 { |
301 defsymbol (&Qinit_pre_mswindows_win, "init-pre-mswindows-win"); | 301 defsymbol (&Qinit_pre_mswindows_win, "init-pre-mswindows-win"); |
302 defsymbol (&Qinit_post_mswindows_win, "init-post-mswindows-win"); | 302 defsymbol (&Qinit_post_mswindows_win, "init-post-mswindows-win"); |
303 | 303 } |
304 | |
305 void | |
306 console_type_create_device_mswindows (void) | |
307 { | |
308 CONSOLE_HAS_METHOD (mswindows, init_device); | |
309 CONSOLE_HAS_METHOD (mswindows, finish_init_device); | |
310 /* CONSOLE_HAS_METHOD (mswindows, mark_device); */ | |
311 CONSOLE_HAS_METHOD (mswindows, delete_device); | |
312 CONSOLE_HAS_METHOD (mswindows, device_system_metrics); | |
313 CONSOLE_HAS_METHOD (mswindows, device_implementation_flags); | |
314 } | |
315 | |
316 void | |
317 vars_of_device_mswindows (void) | |
318 { | |
304 DEFVAR_LISP ("mswindows-downcase-file-names", &Vmswindows_downcase_file_names /* | 319 DEFVAR_LISP ("mswindows-downcase-file-names", &Vmswindows_downcase_file_names /* |
305 Non-nil means convert all-upper case file names to lower case. | 320 Non-nil means convert all-upper case file names to lower case. |
306 This applies when performing completions and file name expansion. | 321 This applies when performing completions and file name expansion. |
307 */ ); | 322 */ ); |
308 Vmswindows_downcase_file_names = Qnil; | 323 Vmswindows_downcase_file_names = Qnil; |
313 default. Note that it is only useful for files on NTFS volumes, | 328 default. Note that it is only useful for files on NTFS volumes, |
314 where hard links are supported. | 329 where hard links are supported. |
315 */ ); | 330 */ ); |
316 Vmswindows_get_true_file_attributes = Qnil; | 331 Vmswindows_get_true_file_attributes = Qnil; |
317 } | 332 } |
318 | |
319 void | |
320 console_type_create_device_mswindows (void) | |
321 { | |
322 CONSOLE_HAS_METHOD (mswindows, init_device); | |
323 CONSOLE_HAS_METHOD (mswindows, finish_init_device); | |
324 /* CONSOLE_HAS_METHOD (mswindows, mark_device); */ | |
325 CONSOLE_HAS_METHOD (mswindows, delete_device); | |
326 CONSOLE_HAS_METHOD (mswindows, device_system_metrics); | |
327 CONSOLE_HAS_METHOD (mswindows, device_implementation_flags); | |
328 } | |
329 | |
330 void | |
331 vars_of_device_mswindows (void) | |
332 { | |
333 } |