Mario wrote:
>Hi!
>
>I have nobody to ask, so maybe here I will find answer for that question.
>My friend wrote a program in C++ which have an Arexx port. It can recive
>some signals from rexx scripts... but there is also a problem.
>Function "Line1"d2c(10)"Line2"
>
>
Hummm are you sure it is not some problem in your friend routine. I have
no time now to write that in c, but a simple stuff like:
/**/
call openport(A)
do forever
call waitpkt(A)
pkt=getpkt(a)
if pkt=null() then iterate
arg=getarg(pkt)
call reply(pkt)
say "["arg"]"
end
Get the '\n' as well.
>Function " Line1"
>Will send only "Line1" without spaces.
>
>
Use something like in:
shell MORPHED.1 "TEXT" T '" hello!"'
Ciao. Alfonso.