2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include <exec/types.h>
10 #include <proto/exec.h>
11 #include <proto/reqtools.h>
12 #include <proto/intuition.h>
13 #include <exec/libraries.h>
14 #include <exec/memory.h>
15 #include <aros/libcall.h>
17 #include "reqtools_intern.h"
19 /*****************************************************************************
23 AROS_LH1(void, rtFreeReqBuffer
,
27 AROS_LHA(APTR
, req
, A1
),
31 struct ReqToolsBase
*, ReqToolsBase
, 7, ReqTools
)
34 Frees the buffer associated with 'req'. In case of a file requester
35 this function will deallocate the directory buffer, in case of a
36 font requester the font list.
38 It is safe to call this function for requesters that have no
39 buffer, so you may call this for all requesters to free as much
43 req - pointer to requester.
56 rtFileRequestA(), rtFontRequestA()
62 ******************************************************************************/
66 FreeReqBuffer(req
); /* in filereqalloc.c */
70 } /* rtFreeReqBuffer */