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(void, SetDefaultScreenFont
,
17 AROS_LHA(struct TextFont
*, textfont
, A0
),
20 struct IntuitionBase
*, IntuitionBase
, 144, Intuition
)
26 textfont - The Font to be used.
31 PRIVATE(!!!!) Do not use
43 *****************************************************************************/
49 ASSERT_VALID_PTR(textfont
);
52 GetPrivIBase(IntuitionBase
)->ScreenFont
= textfont
;
58 } /* SetDefaultScreenFont */