home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / wp_dtp / xdme1820.lha / XDME / AREXX / rexxvars.h < prev    next >
Text File  |  1993-01-27  |  664b  |  30 lines

  1. /*
  2. **  REXXVARS.H
  3. **
  4. **  Header File for use of rexxvars.o with DICE
  5. */
  6.  
  7.  
  8. Prototype __stkargs long CheckRexxMsg(struct Message* msg);
  9. /* Usage: boolean = CheckRexxMsg(message); */
  10.  
  11. Prototype __stkargs long GetRexxVar(struct RexxMsg* msg, char* name, char** value);
  12. /* Usage: error = GetRexxVar(message,variable,&value); */
  13.  
  14. Prototype __stkargs long SetRexxVar(struct RexxMsg* msg, char* name, char* value, int length);
  15. /* Usage: error = SetRexxVar(message,variable,value,length); */
  16.  
  17.  
  18.  
  19. /*
  20. **  For the C language calls the following declarations apply:
  21. **   struct RexxMsg *message;
  22. **   char *variable;
  23. **   char *value;
  24. **   long length;
  25. **   long boolean;
  26. */
  27.  
  28.  
  29.  
  30.