2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Create a standard IORequest structure
9 #include <exec/memory.h>
10 #include <proto/exec.h>
12 /*****************************************************************************
16 #include <proto/alib.h>
18 struct IOStdReq
* CreateStdIO (
21 struct MsgPort
* port
)
24 Create a standard IORequest structure. The structire
25 can be freed with DeleteStdIO().
28 port - The port to be signaled on events.
31 A pointer to the new IORequest structure.
40 CreateExtIO(), DeleteStdIO()
46 ******************************************************************************/
48 return (struct IOStdReq
*)CreateExtIO (port
, sizeof (struct IOStdReq
));