2 Copyright © 1995-2014, 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 structure must be freed
28 port - The port to be signaled on events. May be NULL, in which case
29 no IORequest is allocated.
32 A pointer to the new IORequest structure, or NULL.
41 CreateExtIO(), DeleteExtIO(), DeleteStdIO()
45 ******************************************************************************/
47 return (struct IOStdReq
*)CreateExtIO(port
, sizeof(struct IOStdReq
));