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>
16 #include "reqtools_intern.h"
18 /*****************************************************************************
22 AROS_LH1(VOID
, rtFreeFileList
,
26 AROS_LHA(struct rtFileList
*, selfile
, A0
),
30 struct ReqToolsBase
*, ReqToolsBase
, 10, ReqTools
)
34 Frees a filelist returned by rtFileRequest() when the FREQF_MULTISELECT
35 flag was set. Call this after you have scanned the filelist and you no
40 filelist -- pointer to rtFileList structure, returned by rtFileRequest();
61 ******************************************************************************/
65 FreeFileList(selfile
);
69 } /* rtFreeFileList */