revert between 56095 -> 55830 in arch
[AROS.git] / rom / intuition / freescreendrawinfo.c
blob85279061fc65c1b4771055ce78802182540285b5
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 Copyright © 2001-2003, The MorphOS Development Team. All Rights Reserved.
4 $Id$
5 */
7 #include "intuition_intern.h"
9 /*****************************************************************************
11 NAME */
12 #include <proto/intuition.h>
14 AROS_LH2(void, FreeScreenDrawInfo,
16 /* SYNOPSIS */
17 AROS_LHA(struct Screen *, screen, A0),
18 AROS_LHA(struct DrawInfo *, drawInfo, A1),
20 /* LOCATION */
21 struct IntuitionBase *, IntuitionBase, 116, Intuition)
23 /* FUNCTION
24 Tell intuition that you have finished work with struct DrawInfo
25 returned by GetScreenDrawInfo().
27 INPUTS
28 screen - The screen you passed to GetScreenDrawInfo()
29 drawInfo - The DrawInfo structure returned by GetScreenDrawInfo()
31 RESULT
32 None.
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
41 GetScreenDrawInfo()
43 INTERNALS
45 *****************************************************************************/
47 AROS_LIBFUNC_INIT
49 DEBUG_FREESCREENDRAWINFO(dprintf("FreeScreenDrawInfo: Screen 0x%lx DrawInfo 0x%lx\n",
50 screen, drawInfo));
52 /* shut up the compiler */
53 IntuitionBase = IntuitionBase;
54 drawInfo = drawInfo;
55 screen = screen;
57 return;
59 AROS_LIBFUNC_EXIT
60 } /* FreeScreenDrawInfo */