mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
18
src/irc/core/modes.h
Normal file
18
src/irc/core/modes.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef __MODES_H
|
||||
#define __MODES_H
|
||||
|
||||
#include "server.h"
|
||||
#include "channels.h"
|
||||
|
||||
void modes_init(void);
|
||||
void modes_deinit(void);
|
||||
|
||||
/* add `mode' to `old' - return newly allocated mode. */
|
||||
char *modes_join(const char *old, const char *mode);
|
||||
|
||||
void parse_channel_modes(CHANNEL_REC *channel, const char *setby, const char *modestr);
|
||||
|
||||
void channel_set_singlemode(IRC_SERVER_REC *server, const char *channel, const char *nicks, const char *mode);
|
||||
void channel_set_mode(IRC_SERVER_REC *server, const char *channel, const char *mode);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue