home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / wp_dtp / ispell.lha / minrexx.h < prev    next >
C/C++ Source or Header  |  1990-08-06  |  558b  |  23 lines

  1. /*
  2.  *   Includes for minrexx.c; please refer to that file for
  3.  *   further documentation.
  4.  */
  5. #include <rexx/rxslib.h>
  6. /*
  7.  *   Maximum messages that can be pending, and the return codes
  8.  *   for two bad situations.
  9.  */
  10. #define MAXRXOUTSTANDING (300)
  11. #define RXERRORIMGONE (100)
  12. #define RXERRORNOCMD (30)
  13. /*
  14.  *   This is the association list you build up (statically or
  15.  *   dynamically) that should be terminated with an entry with
  16.  *   NULL for the name . . .
  17.  */
  18. struct rexxCommandList 
  19. {
  20.    char *name ;
  21.    void (*userdata)(struct RexxMsg *, char *) ;
  22. };
  23.