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 /*****i***********************************************************************
12 #include <proto/intuition.h>
14 AROS_LH1(void, SetDefaultScreenFont
,
17 AROS_LHA(struct TextFont
*, textfont
, A0
),
20 struct IntuitionBase
*, IntuitionBase
, 144, Intuition
)
26 textfont - The Font to be used.
32 This function is actually private and intended only for use
34 This private function is also present in MorphOS v50.
44 *****************************************************************************/
50 ASSERT_VALID_PTR(textfont
);
53 GetPrivIBase(IntuitionBase
)->ScreenFont
= textfont
;
59 } /* SetDefaultScreenFont */