home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #3 / amigamamagazinepolishissue1998.iso / bazy / db3.4 / dbrexx.h < prev    next >
C/C++ Source or Header  |  1995-09-05  |  551b  |  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.