remove deprecated luminance texture generation
[voxelands-alt.git] / inc / ban.h
blob18e262b168a0c990afa91000ae3c58a9495cb2f3
1 #ifndef _BAN_H_
2 #define _BAN_H_
4 /* defined in ban.c */
5 int ban_init(char* file);
6 void ban_exit(void);
7 void ban_load(void);
8 void ban_save(void);
9 int ban_ipbanned(char* ip);
10 int ban_description(char* ip_or_name, char* buff, int size);
11 char* ban_ip2name(char* ip);
12 void ban_add(char* ip, char* name);
13 void ban_remove(char* ip_or_name);
15 #endif