author | Markus Bröker <mbroeker@largo.dyndns.tv> |
Sat, 13 Dec 2008 15:40:28 +0100 | |
changeset 15 | f19c1f9b4cd3 |
parent 11 | a769385a59c6 |
child 58 | 500a5ea7fcb8 |
permissions | -rw-r--r-- |
0 | 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 |
#endif |