DEFINITION MODULE MyScreen; (* This module initializes the window and screen for use by any program. Created: 5/24/86 by Richie Bielak Modified: 08/Feb/88 by Garth Thornton It's more versatile with IDCMPFlags global so i can use it for more progs without recompiling. Copyright (c) 1986 by Richard Bielak This program maybe freely copied. But please leave my name in. Thanks.....Richie *) FROM Intuition IMPORT WindowPtr, ScreenPtr, IDCMPFlagSet; FROM Views IMPORT ModeSet; PROCEDURE SetUpScreen (VAR wp : WindowPtr; VAR sp : ScreenPtr; width, height, depth : INTEGER; modes : ModeSet ); VAR MyIDCMPFlagSet : IDCMPFlagSet; END MyScreen.