blob: bcfe5a3551d035e9890386cf6f0741cdb2601476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __USERPROCESS_H__
#define __USERPROCESS_H__
#include "users.h"
#include "inspircd.h"
void CheckDie();
void LoadAllModules(InspIRCd* ServerInstance);
void CheckRoot();
void OpenLog(char** argv, int argc);
void DoBackgroundUserStuff(time_t TIME);
void ProcessUser(userrec* cu);
#endif
|