2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include "graphics_intern.h"
11 /*****************************************************************************
15 #include <graphics/view.h>
16 #include <proto/exec.h>
18 AROS_LH1(VOID
, FreeDBufInfo
,
22 AROS_LHA(struct DBufInfo
*, db
, A1
),
26 struct GfxBase
*, GfxBase
, 162, Graphics
)
30 Frees structure allocated with AllocDBufInfo().
36 Frees memory occupied by 'db'; ('db' may be NULL, in that case nothing
47 AllocDBufInfo(), ChangeVPBitMap()
53 ******************************************************************************/
58 if(db
== NULL
) return;
60 FreeMem(db
, sizeof(struct DBufInfo
));