2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
7 #include "intuition_intern.h"
9 /*****************************************************************************
12 #include <proto/intuition.h>
14 AROS_LH1(UWORD
, SetPubScreenModes
,
17 AROS_LHA(UWORD
, modes
, D0
),
20 struct IntuitionBase
*, IntuitionBase
, 91, Intuition
)
24 Specify global intuition public screen handling.
28 modes -- The new set of flags to consider. Currently defined flags are:
29 SHANGHAI Workbench windows are opened on the default
31 POPPUBSCREEN When a visitor window opens on a public screen,
32 the screen is brought to front.
36 The flags set before the change was made.
52 24-06-98 SDuvan Implemented
54 *****************************************************************************/
55 #define GPB(x) GetPrivIBase(x)
63 retval
= GPB(IntuitionBase
)->pubScrGlobalMode
;
64 GPB(IntuitionBase
)->pubScrGlobalMode
= modes
;
70 } /* SetPubScreenModes */