Minor fixes to comments.
[AROS.git] / rom / intuition / freescreendrawinfo.c
blobafe533890624ca2ddd23df04f2fddc7d81fb6e0e
1 /*
2 Copyright © 1995-2007, 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 HISTORY
46 29-10-95 digulla automatically created from
47 intuition_lib.fd and clib/intuition_protos.h
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 DEBUG_FREESCREENDRAWINFO(dprintf("FreeScreenDrawInfo: Screen 0x%lx DrawInfo 0x%lx\n",
54 screen, drawInfo));
56 /* shut up the compiler */
57 IntuitionBase = IntuitionBase;
58 drawInfo = drawInfo;
59 screen = screen;
61 return;
63 AROS_LIBFUNC_EXIT
64 } /* FreeScreenDrawInfo */