home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 13 / MA_Cover_13.bin / source / c / db3.6-beta-src / dbrexx.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-05  |  551 b   |  22 lines

  1. /* Headerfile for the Rexx support for db */
  2.  
  3. #include <exec/types.h>
  4. #include <exec/memory.h>
  5. #include <exec/ports.h>
  6. #include <rexx/rxslib.h>
  7. #include <rexx/storage.h>
  8. #include <rexx/errors.h>
  9.  
  10. extern struct MsgPort *MyRexxPort;
  11. extern char MyRexxPortName[];    /* Enough for name and trailing numbers */
  12.  
  13.  
  14. /* Functions you may call */
  15.  
  16. struct MsgPort *SetupRexxPort(char *basename);
  17. void CloseRexxPort(struct MsgPort *rexxport);
  18.  
  19. BOOL SendRexxCommand(char *name);
  20. BOOL SendRexxStrCommand(char *name);
  21. BOOL HandleRexxMessage(struct MsgPort *rexxport);
  22.