2 Copyright © 1995-2013, 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
)
23 Specify global intuition public screen handling.
26 modes - The new set of flags to consider. Currently defined flags are:
27 SHANGHAI: Workbench windows are opened on the default public
29 POPPUBSCREEN: When a visitor window opens on a public screen, the
30 screen is brought to front.
33 The flags set before the change was made.
47 *****************************************************************************/
54 retval
= GetPrivIBase(IntuitionBase
)->pubScrGlobalMode
;
55 GetPrivIBase(IntuitionBase
)->pubScrGlobalMode
= modes
;
61 } /* SetPubScreenModes */