arch/m68k-amiga: Provide dummy KrnObtainInput/KrnReleaseInput routines
[AROS.git] / workbench / libs / asl / requestfile.c
blob76431c2aae27ca9b5c88583da701a5487a748903
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
10 /*****************************************************************************
12 NAME */
13 #include <proto/asl.h>
14 #include <libraries/asl.h>
15 #include "asl_intern.h"
17 AROS_LH1(BOOL, RequestFile,
19 /* SYNOPSIS */
20 AROS_LHA(struct FileRequester *, fileReq, A0),
22 /* LOCATION */
23 struct Library *, AslBase, 7, Asl)
25 /* FUNCTION
26 Obsolete. Use AslRequest() instead.
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
39 AslRequest()
41 INTERNALS
43 HISTORY
44 27-11-96 digulla automatically created from
45 asl_lib.fd and clib/asl_protos.h
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
51 return (AslRequest(fileReq, NULL));
53 AROS_LIBFUNC_EXIT
54 } /* RequestFile */