blob: 9f4d52e381cfebcb964df98b88cddacf46169fae (
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);
bool DoBackgroundUserStuff(time_t TIME);
void ProcessUser(userrec* cu);
#endif
|