revert between 56095 -> 55830 in arch
[AROS.git] / compiler / alib / beginio.c
blobcc32228b6db10709203d81c3b312d535637e47b7
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: amiga.lib function BeginIO()
6 Lang: english
7 */
8 #include <proto/exec.h>
10 /*****************************************************************************
12 NAME */
13 #include <exec/ports.h>
14 #include <proto/alib.h>
16 void BeginIO (
18 /* SYNOPSIS */
19 struct IORequest * ioReq)
21 /* FUNCTION
22 Call the BeginIO() function of the given device.
24 INPUTS
25 ioReq - a filled out IORequest structure.
27 RESULT
28 None.
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
37 exec.library/AbortIO()
39 INTERNALS
41 HISTORY
43 ******************************************************************************/
45 /* Call BeginIO() vector */
46 AROS_LVO_CALL1NR(void,
47 AROS_LCA(struct IORequest *,ioReq,A1),
48 struct Device *,ioReq->io_Device,5,
50 } /* BeginIO */