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