monitors.h 466 B

123456789101112131415161718192021
  1. #ifndef _GRASS_MONITORS_H
  2. #define _GRASS_MONITORS_H
  3. struct MON_CAP
  4. {
  5. char *name; /* name of monitor */
  6. char *path; /* full path name to execute monitor */
  7. char *comment; /* like this */
  8. char *link; /* were monitor interfaces to gis */
  9. char *tty; /* where monitor must be run from */
  10. char *where; /* version of above for user */
  11. };
  12. #define MON_NEXT 1
  13. #define MON_NAME 2
  14. #define MON_PATH 3
  15. #define MON_LINK 4
  16. #define MON_CLOSE 5
  17. #endif