home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: SysTools / SysTools.zip / cimon096.zip / cimon.h < prev    next >
C/C++ Source or Header  |  2002-04-05  |  702b  |  27 lines

  1. /* ----------------------------------------------------------------------
  2.    cimon - a UNIX command line client for the fli4l imon daemon.
  3.    
  4.    Public domain, 2001-2002, Rene Herman <rene.herman@mail.com>
  5. ---------------------------------------------------------------------- */
  6.  
  7. /* util.c */
  8. const char *herrorstr(int);
  9.  
  10. /* exit.c */
  11. extern const char *program_name;
  12.  
  13. void exit_error(const char * const, ...);
  14. void exit_errno(const char * const);
  15. void exit_usage(const char * const);
  16.  
  17. /* imon.c */
  18. #define IMON_PORT 5000
  19.  
  20. extern unsigned short port;
  21. extern const char    *password;
  22.  
  23. void imon_open(const char * const);
  24. void imon_putc(const char);
  25. void imon_puts(const char *);
  26. void imon_quit(void);
  27.