Mercurial > hg > xemacs-beta
comparison src/console-impl.h @ 5936:574f0cded429 cygwin
try to replace all nnnL or nnnUL constants with EMACS_[U]INT
author | Henry Thompson <ht@markup.co.uk> |
---|---|
date | Sun, 13 Dec 2015 13:22:58 +0000 |
parents | 81fee4aee9b6 |
children |
comparison
equal
deleted
inserted
replaced
5935:d5eb0914ca1f | 5936:574f0cded429 |
---|---|
33 /* | 33 /* |
34 * Constants returned by device_implementation_flags_method | 34 * Constants returned by device_implementation_flags_method |
35 */ | 35 */ |
36 | 36 |
37 /* Set when device uses pixel-based geometry */ | 37 /* Set when device uses pixel-based geometry */ |
38 #define XDEVIMPF_PIXEL_GEOMETRY 0x00000001L | 38 #define XDEVIMPF_PIXEL_GEOMETRY E1 |
39 | 39 |
40 /* Indicates that the device is a printer */ | 40 /* Indicates that the device is a printer */ |
41 #define XDEVIMPF_IS_A_PRINTER 0x00000002L | 41 #define XDEVIMPF_IS_A_PRINTER ((EMACS_INT)2) |
42 | 42 |
43 /* Do not automatically redisplay this device */ | 43 /* Do not automatically redisplay this device */ |
44 #define XDEVIMPF_NO_AUTO_REDISPLAY 0x00000004L | 44 #define XDEVIMPF_NO_AUTO_REDISPLAY ((EMACS_INT)4) |
45 | 45 |
46 /* Do not delete the device when last frame's gone */ | 46 /* Do not delete the device when last frame's gone */ |
47 #define XDEVIMPF_FRAMELESS_OK 0x00000008L | 47 #define XDEVIMPF_FRAMELESS_OK ((EMACS_INT)8) |
48 | 48 |
49 /* Do not preempt resiaply of frame or device once it starts */ | 49 /* Do not preempt resiaply of frame or device once it starts */ |
50 #define XDEVIMPF_DONT_PREEMPT_REDISPLAY 0x00000010L | 50 #define XDEVIMPF_DONT_PREEMPT_REDISPLAY ((EMACS_INT)10) |
51 | 51 |
52 struct console_methods | 52 struct console_methods |
53 { | 53 { |
54 const char *name; /* Used by print_console, print_device, print_frame */ | 54 const char *name; /* Used by print_console, print_device, print_frame */ |
55 Lisp_Object symbol; | 55 Lisp_Object symbol; |