1 #include <proto/exec.h>
2 #include <proto/alib.h>
4 #include <exec/ports.h>
9 struct Message msg
, *msg2
;
12 port
= FindPort("VARTEST");
15 puts("Port not found");
18 msg
.mn_ReplyPort
= CreatePort(NULL
, 0);
19 if (msg
.mn_ReplyPort
==NULL
)
21 puts("Error creating port");
26 WaitPort(msg
.mn_ReplyPort
);
27 msg2
= GetMsg(msg
.mn_ReplyPort
);
28 DeletePort(msg
.mn_ReplyPort
);
30 puts("Wrong message returned");
32 puts("Message returned");