window type ; ignored
(set-screen-redisplay-title?! screen #t))
+;; (define (win32-screen/scroll-lines-down! screen xl xu yl yu amount)
+;; (and #f
+;; (win32-screen-vertical-scroll! (screen->handle screen)
+;; xl xu yl yu (fix:+ yl amount))))
+
(define (win32-screen/scroll-lines-down! screen xl xu yl yu amount)
- (and #f
- (win32-screen-vertical-scroll! (screen->handle screen)
- xl xu yl yu (fix:+ yl amount))))
+ (declare (ignore screen xl xu yl yu amount))
+ #f)
+
+;; (define (win32-screen/scroll-lines-up! screen xl xu yl yu amount)
+;; (and #f
+;; (win32-screen-vertical-scroll! (screen->handle screen)
+;; xl xu amount yu 0)
+;; (win32-screen-vertical-scroll! (screen->handle screen)
+;; xl xu yl yu (fix:- yl amount))))
(define (win32-screen/scroll-lines-up! screen xl xu yl yu amount)
- (and #f
- (win32-screen-vertical-scroll! (screen->handle screen)
- xl xu amount yu 0)
- (win32-screen-vertical-scroll! (screen->handle screen)
- xl xu yl yu (fix:- yl amount))))
+ (declare (ignore screen xl xu yl yu amount))
+ #f)
(define (win32-screen/flush! screen)
;; Win32 API call causes any pending painting to be done