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_LH2(void, FreeScreenDrawInfo
,
17 AROS_LHA(struct Screen
*, screen
, A0
),
18 AROS_LHA(struct DrawInfo
*, drawInfo
, A1
),
21 struct IntuitionBase
*, IntuitionBase
, 116, Intuition
)
24 Tell intuition that you have finished work with struct DrawInfo
25 returned by GetScreenDrawInfo().
28 screen - The screen you passed to GetScreenDrawInfo()
29 drawInfo - The DrawInfo structure returned by GetScreenDrawInfo()
45 *****************************************************************************/
49 DEBUG_FREESCREENDRAWINFO(dprintf("FreeScreenDrawInfo: Screen 0x%lx DrawInfo 0x%lx\n",
52 /* shut up the compiler */
53 IntuitionBase
= IntuitionBase
;
60 } /* FreeScreenDrawInfo */