]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/channels.cpp
1d1b3edbe9b899437db0a5aa97df7fe06be38aa7
[user/henk/code/inspircd.git] / src / channels.cpp
1 #include "inspircd_config.h" 
2 #include "channels.h"
3 #include "inspircd.h"
4 #include <stdio.h>
5
6 chanrec::chanrec()
7 {
8         strcpy(name,"");
9         strcpy(custom_modes,"");
10         strcpy(topic,"");
11         strcpy(setby,"");
12         strcpy(key,"");
13         created = topicset = limit = 0;
14         topiclock = noexternal = inviteonly = moderated = secret = c_private = false;
15 }
16
17 void chanrec::SetCustomMode(char mode,bool mode_on)
18 {
19 }
20
21 void chanrec::SetCustomModeParam(char mode,char* parameter,bool mode_on)
22 {
23 }
24
25
26