home *** CD-ROM | disk | FTP | other *** search
-
-
- struct ARexxContext
- {
- struct MsgPort *ARexxPort; /* The port messages come in at... */
- struct Library *RexxSysBase; /* We will hide the library pointer here... */
- long Outstanding; /* The count of outstanding ARexx messages... */
- char PortName[24]; /* The port name goes here... */
- char ErrorName[28]; /* The name of the <base>.LASTERROR... */
- char Extension[8]; /* Default file name extension... */
- };
-
- #define AREXXCONTEXT struct ARexxContext *
-
-
- BOOL __asm __saveds GetARexxArgument(register __a0 AREXXCONTEXT RexxContext,
- register __a1 struct RexxMsg *rmsg,
- register __a2 char *String,
- register __d0 int argnumber);
-
- LONG __asm __saveds ParseTemplate(register __a0 char *string,register __a1 long *plate);
-
-