Hello,
I am creating a unique ARexx port with the CreateRexxHostPort() call which will append a value of 1-9 after the basename followed by a period.
This works fine, but I can't for the life of me work out how to find what that particular slot number is.
Can anyone help me on determining the actual ARexx portname created after using the CreateRexxHostPort() call?
Thanks
Dave
@Dave
You can examine the port that was created to learn its name:
RexxHostPort->mp_Node.ln_Name
is a pointer to a string containing the port's name.
Excellent. Thank you.