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_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()
46 29-10-95 digulla automatically created from
47 intuition_lib.fd and clib/intuition_protos.h
49 *****************************************************************************/
53 DEBUG_FREESCREENDRAWINFO(dprintf("FreeScreenDrawInfo: Screen 0x%lx DrawInfo 0x%lx\n",
56 /* shut up the compiler */
57 IntuitionBase
= IntuitionBase
;
64 } /* FreeScreenDrawInfo */