mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3142 e03df62e-2008-0410-955e-edbf42e46eb7
16 lines
330 B
C
16 lines
330 B
C
#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);
|
|
void DoSocketTimeouts(time_t TIME);
|
|
|
|
#endif
|