Metatarget for copying of testfile fixed.
[AROS.git] / workbench / libs / reqtools / rtfreefilelist.c
blob7560cfbf9e6f207cca29a95b97450460d6e7c0a7
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
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 /*****************************************************************************
20 NAME */
22 AROS_LH1(VOID, rtFreeFileList,
24 /* SYNOPSIS */
26 AROS_LHA(struct rtFileList *, selfile, A0),
28 /* LOCATION */
30 struct ReqToolsBase *, ReqToolsBase, 10, ReqTools)
32 /* FUNCTION
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
36 longer need it.
38 INPUTS
40 filelist -- pointer to rtFileList structure, returned by rtFileRequest();
41 may be NULL.
43 RESULT
44 none
46 NOTES
48 EXAMPLE
50 BUGS
51 none known
53 SEE ALSO
55 rtFileRequestA()
57 INTERNALS
59 HISTORY
61 ******************************************************************************/
63 AROS_LIBFUNC_INIT
65 FreeFileList(selfile);
67 AROS_LIBFUNC_EXIT
69 } /* rtFreeFileList */