Hi Terry,

I'm having more problems building mod_rexx
>
I checked the mod_rexx source on SF.  You can look up ooRexx exit function
protoypes and examples in rexxapi.pdf at
https://sourceforge.net/projects/oorexx/files/oorexx-docs/5.0.0beta/

E. g. 1.15.1. "Writing Context Exit Handlers":

~~~
int REXXENTRY Rexx_IO_exit(
RexxExitContext *context, // the exit context API vector
int exitNumber, // code defining the exit function
int subfunction, // code defining the exit subfunction
PEXIT parmBlock); // function-dependent control block
~~~

Or in 2.7.3.1.3. "Example":

~~~
int SetRexxVariable(
const char *name, /* Rexx variable to set */
char *value) /* value to assign */
~~~

is there some standard (portable) type that I should be using instead of
> LONG?
> is there some standard type I should use in place of PSZ?
>
Above suggests using char * instead of PSZ, and int instead of LONG.
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to