mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-12 03:59:03 -04:00
14 lines
248 B
C
14 lines
248 B
C
|
#ifndef __USERPROCESS_H__
|
||
|
#define __USERPROCESS_H__
|
||
|
|
||
|
#include "users.h"
|
||
|
|
||
|
void CheckDie();
|
||
|
void LoadAllModules();
|
||
|
void CheckRoot();
|
||
|
void OpenLog(char** argv, int argc);
|
||
|
bool DoBackgroundUserStuff(time_t TIME);
|
||
|
void ProcessUser(userrec* cu);
|
||
|
|
||
|
#endif
|