mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 19:19:02 -04:00
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
|
/*
|
||
|
|
||
|
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef __WORLD_H
|
||
|
#define __WORLD_H
|
||
|
|
||
|
// include the common header files
|
||
|
|
||
|
#include <typeinfo>
|
||
|
#include <iostream.h>
|
||
|
#include <string>
|
||
|
#include <deque>
|
||
|
#include "users.h"
|
||
|
#include "channels.h"
|
||
|
|
||
|
typedef deque<string> file_cache;
|
||
|
|
||
|
void WriteOpers(char* text, ...);
|
||
|
void debug(char *text, ...);
|
||
|
void Write(int sock,char *text, ...);
|
||
|
void WriteServ(int sock, char* text, ...);
|
||
|
void WriteFrom(int sock, userrec *user,char* text, ...);
|
||
|
void WriteTo(userrec *source, userrec *dest,char *data, ...);
|
||
|
void WriteChannel(chanrec* Ptr, userrec* user, char* text, ...);
|
||
|
void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...);
|
||
|
int common_channels(userrec *u, userrec *u2);
|
||
|
void WriteCommon(userrec *u, char* text, ...);
|
||
|
void WriteCommonExcept(userrec *u, char* text, ...);
|
||
|
void WriteWallOps(userrec *source, char* text, ...);
|
||
|
int isnick(const char *n);
|
||
|
userrec* Find(string nick);
|
||
|
chanrec* FindChan(const char* chan);
|
||
|
char* cmode(userrec *user, chanrec *chan);
|
||
|
string getservername();
|
||
|
string getnetworkname();
|
||
|
string getadminname();
|
||
|
string getadminemail();
|
||
|
string getadminnick();
|
||
|
void readfile(file_cache &F, const char* fname);
|
||
|
|
||
|
#endif
|