comparison src/console-msw.h @ 231:557eaa0339bf r20-5b14

Import from CVS: tag r20-5b14
author cvs
date Mon, 13 Aug 2007 10:13:48 +0200
parents 2c611d1463a6
children 52952cbfc5b5
comparison
equal deleted inserted replaced
230:39ed1d2bdd9d 231:557eaa0339bf
75 DWORD last_click_time; 75 DWORD last_click_time;
76 76
77 /* Coordinates of last click event, screen-relative */ 77 /* Coordinates of last click event, screen-relative */
78 POINTS last_click_point; 78 POINTS last_click_point;
79 79
80 /* Menu hashtable. See menubar-msw.h */
81 Lisp_Object hash_table;
82
80 /* Misc flags */ 83 /* Misc flags */
81 int button2_need_lbutton : 1; 84 int button2_need_lbutton : 1;
82 int button2_need_rbutton : 1; 85 int button2_need_rbutton : 1;
83 int button2_is_down : 1; 86 int button2_is_down : 1;
84 int ignore_next_lbutton_up : 1; 87 int ignore_next_lbutton_up : 1;
88 91
89 #define FRAME_MSWINDOWS_DATA(f) FRAME_TYPE_DATA (f, mswindows) 92 #define FRAME_MSWINDOWS_DATA(f) FRAME_TYPE_DATA (f, mswindows)
90 93
91 #define FRAME_MSWINDOWS_HANDLE(f) (FRAME_MSWINDOWS_DATA (f)->hwnd) 94 #define FRAME_MSWINDOWS_HANDLE(f) (FRAME_MSWINDOWS_DATA (f)->hwnd)
92 #define FRAME_MSWINDOWS_DC(f) (FRAME_MSWINDOWS_DATA (f)->hdc) 95 #define FRAME_MSWINDOWS_DC(f) (FRAME_MSWINDOWS_DATA (f)->hdc)
93 96 #define FRAME_MSWINDOWS_MENU_HASHTABLE(f) (FRAME_MSWINDOWS_DATA (f)->hash_table)
94 97
95 /* 98 /*
96 * Redisplay functions 99 * Redisplay functions
97 */ 100 */
98 void mswindows_redraw_exposed_area (struct frame *f, int x, int y, 101 void mswindows_redraw_exposed_area (struct frame *f, int x, int y,