#| -*-Scheme-*-
-$Id: edwin.pkg,v 1.252 2000/04/15 02:42:32 cph Exp $
+$Id: edwin.pkg,v 1.253 2000/04/30 21:52:50 cph Exp $
Copyright (c) 1989-2000 Massachusetts Institute of Technology
sm_cymenu
sw_showminnoactive
swp_nomove
+ swp_noredraw
swp_nosize
swp_nozorder
update-window
;;; -*-Scheme-*-
;;;
-;;; $Id: win32.scm,v 1.11 2000/04/15 02:42:25 cph Exp $
+;;; $Id: win32.scm,v 1.12 2000/04/30 21:52:35 cph Exp $
;;;
;;; Copyright (c) 1994-2000 Massachusetts Institute of Technology
;;;
(set-window-pos handle 0 0 0
(- (rect/right rect) (rect/left rect))
(- (rect/bottom rect) (rect/top rect))
- (+ SWP_NOMOVE SWP_NOZORDER)))))
+ (+ SWP_NOMOVE SWP_NOZORDER SWP_NOREDRAW)))))
(define (win32-screen/set-position! screen x y)
(set-window-pos (screen->handle screen) 0 x y 0 0
- (+ SWP_NOSIZE SWP_NOZORDER)))
+ (+ SWP_NOSIZE SWP_NOZORDER SWP_NOREDRAW)))
(define (win32-screen/get-position screen)
(let ((rect (make-rect 0 0 0 0)))