2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
5 Desc: Rexx function to wait for a packet on a port
9 #include <proto/exec.h>
10 #include <proto/rexxsyslib.h>
11 #include <proto/alib.h>
13 #include <exec/types.h>
14 #include <exec/memory.h>
15 #include <rexx/storage.h>
16 #include <rexx/errors.h>
20 #include "rexxsupport_intern.h"
23 LONG
rxsupp_waitpkt(struct Library
*RexxSupportBase
, struct RexxMsg
*msg
, UBYTE
**argstring
)
25 struct PortNodeData
*data
;
27 data
= (struct PortNodeData
*)FindName(&RSBI(RexxSupportBase
)->openports
, ARG1(msg
));
31 *argstring
= CreateArgstring("1", 1);