summaryrefslogtreecommitdiff
blob: 92a9e30fa7c9155c4921eda1ab8f0d2c4167b1d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _ZoO_IO_PARAMETERS_TYPES_H_
#define _ZoO_IO_PARAMETERS_TYPES_H_

struct ZoO_parameters
{
   const char * restrict data_filename;
   const char * restrict new_data_filename;

   const char * restrict irc_server_addr;
   const char * restrict irc_server_port;
   const char * restrict irc_server_channel;
   const char * restrict irc_username;
   const char * restrict irc_realname;

   int reply_rate;

   int aliases_count;
   const char * restrict * restrict aliases;
};

#endif