home *** CD-ROM | disk | FTP | other *** search
- /* dfcss.h */
-
- #ifndef DFCSS_H
- #define DFCSS_H
- #include <stdlib.h>
- #include <stdio.h>
-
- #define MAXMSG 4096
- #define PORT_NUMBER 1666
- #define SERVERID "0.12beta"
- #define IDLEN 8
- #define CONNECT "CONNECT!"
- #define ABORT "ABORT"
- #define SHUTDOWN "SHUTDOWN"
-
-
- #ifdef __STDC__
- int CheckParm(char *, int, char **);
- int StripWhite(char *);
- #else
- int CheckParm();
- int StripWhite();
- #endif
-
- #endif
-