"Fossies" - the Fresh Open Source Software Archive

Member "netbiff-0.9.18/nbproto.h" (21 Sep 2003, 418 Bytes) of package /linux/privat/old/netbiff-0.9.18.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 #ifndef NBPROTO_H
    2 #define NBPROTO_H
    3 
    4 #define NETBIFF_CMD_QUIT 1
    5 #define NETBIFF_CMD_POLL 2
    6 #define NETBIFF_CMD_FOLDER 3
    7 #define NETBIFF_CMD_EOF 4
    8 #define NETBIFF_CMD_DATARESPONSE 5
    9 
   10 #define NETBIFF_PROTO_MAXARGS 2
   11 
   12 #define OK 0
   13 #define NO 1
   14 #define BAD 2
   15 #define UPDATE 3
   16 #define RESET 4
   17 #define DATAREQUEST 5
   18 
   19 int netbiff_proto_next(char **arg);
   20 void netbiff_send(int status, char *fmt, ...);
   21 
   22 #endif /* NBPROTO_H */