include/config.h
changeset 0 586472add385
child 11 a769385a59c6
equal deleted inserted replaced
-1:000000000000 0:586472add385
       
     1 /**
       
     2  *  $Id: config.h 51 2008-01-10 00:19:39Z mbroeker $
       
     3  * $URL: http://localhost/svn/c/mcbot/trunk/include/config.h $
       
     4  *
       
     5  */
       
     6 
       
     7 #ifndef CONFIG_H
       
     8 #define CONFIG_H
       
     9 
       
    10 struct UserConfig {
       
    11     char *nick;
       
    12     char *pass;
       
    13     char *server;
       
    14     int port;
       
    15     char *topic;
       
    16     char *channel;
       
    17 };
       
    18 
       
    19 typedef struct UserConfig UC;
       
    20 
       
    21 int config (UC *, char *);
       
    22 
       
    23 #endif