Mercurial > hg > xemacs-beta
comparison src/frame-msw.c @ 245:51092a27c943 r20-5b21
Import from CVS: tag r20-5b21
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:17:54 +0200 |
parents | 557eaa0339bf |
children | 83b3d10dcba9 |
comparison
equal
deleted
inserted
replaced
244:78d4f1140794 | 245:51092a27c943 |
---|---|
58 | 58 |
59 static void | 59 static void |
60 mswindows_init_frame_1 (struct frame *f, Lisp_Object props) | 60 mswindows_init_frame_1 (struct frame *f, Lisp_Object props) |
61 { | 61 { |
62 Lisp_Object device = FRAME_DEVICE (f); | 62 Lisp_Object device = FRAME_DEVICE (f); |
63 struct device *d = XDEVICE (device); | |
64 Lisp_Object initially_unmapped; | 63 Lisp_Object initially_unmapped; |
65 Lisp_Object name, height, width, popup, top, left; | 64 Lisp_Object name, height, width, popup, top, left; |
66 Lisp_Object frame_obj; | 65 Lisp_Object frame_obj; |
67 RECT rect; | 66 RECT rect; |
68 DWORD style, exstyle; | 67 DWORD style, exstyle; |
249 } | 248 } |
250 | 249 |
251 static void | 250 static void |
252 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist) | 251 mswindows_set_frame_properties (struct frame *f, Lisp_Object plist) |
253 { | 252 { |
254 int x, y; | 253 int x=0, y=0; |
255 int width = 0, height = 0; | 254 int width = 0, height = 0; |
256 BOOL width_specified_p = FALSE; | 255 BOOL width_specified_p = FALSE; |
257 BOOL height_specified_p = FALSE; | 256 BOOL height_specified_p = FALSE; |
258 BOOL x_specified_p = FALSE; | 257 BOOL x_specified_p = FALSE; |
259 BOOL y_specified_p = FALSE; | 258 BOOL y_specified_p = FALSE; |