5 * Includes for minrexx.c; please refer to that file for
6 * further documentation.
8 /* #include <rexx/rxslib.h> */
11 * This is the list of functions we can access. (Cheap forward
17 struct RexxMsg
*sendRexxCmd() ;
18 struct RexxMsg
*syncRexxCmd() ;
19 struct RexxMsg
*asyncRexxCmd() ;
22 * Maximum messages that can be pending, and the return codes
23 * for two bad situations.
25 #define MAXRXOUTSTANDING (300)
26 #define RXERRORIMGONE (100)
27 #define RXERRORNOCMD (30)
29 * This is the association list you build up (statically or
30 * dynamically) that should be terminated with an entry with
31 * NULL for the name . . .
33 struct rexxCommandList
{
38 #endif /* _MINREXX_H */