Added kernel module for starting the usb stack at boot time. It's not activated thoug...
[cake.git] / rom / dos / exallend.c
blob3657f95a423223f2414bd66aa27dfe2b5a3455cf
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
8 #include <exec/memory.h>
9 #include <proto/exec.h>
10 #include <dos/filesystem.h>
11 #include <dos/dosextens.h>
12 #include <dos/exall.h>
13 #include "dos_intern.h"
15 /*****************************************************************************
17 NAME */
18 #include <proto/dos.h>
20 AROS_LH5(void, ExAllEnd,
22 /* SYNOPSIS */
23 AROS_LHA(BPTR, lock, D1),
24 AROS_LHA(struct ExAllData *, buffer, D2),
25 AROS_LHA(LONG, size, D3),
26 AROS_LHA(LONG, data, D4),
27 AROS_LHA(struct ExAllControl *, control, D5),
29 /* LOCATION */
30 struct DosLibrary *, DOSBase, 165, Dos)
32 /* FUNCTION
34 Stop an ExAll() operation before returning ERROR_NO_MORE_ENTRIES.
36 INPUTS
38 The inputs should correspond to the inputs for the ExAll() function.
40 lock -- lock on the directory that is being examined
41 buffer -- buffer for data returned
42 size -- size of 'buffer' in bytes
43 type -- type of data to be returned
44 control -- control data structure
46 RESULT
48 NOTES
50 The control data structure must have been allocated with AllocDosObject().
52 EXAMPLE
54 BUGS
56 SEE ALSO
58 ExAll(), AllocDosObject()
60 INTERNALS
62 *****************************************************************************/
64 AROS_LIBFUNC_INIT
66 if (((struct InternalExAllControl *)control)->fib == NULL)
68 /* Get pointer to filehandle */
69 struct FileHandle *fh = (struct FileHandle *)BADDR(lock);
71 /* Get pointer to I/O request. Use stackspace for now. */
72 struct IOFileSys iofs;
74 /* Prepare I/O request. */
75 InitIOFS(&iofs, FSA_EXAMINE_ALL_END, DOSBase);
77 iofs.IOFS.io_Device = fh->fh_Device;
78 iofs.IOFS.io_Unit = fh->fh_Unit;
80 /* Send the request. May not fail. */
81 DosDoIO(&iofs.IOFS);
83 else
85 control->eac_LastKey = 0;
89 AROS_LIBFUNC_EXIT
90 } /* ExAllEnd */