-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathwarden.inc
More file actions
35 lines (31 loc) · 1.02 KB
/
warden.inc
File metadata and controls
35 lines (31 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#if defined _warden_included
#endinput
#endif
#define _warden_included
/*********************************************************
* Checks if any warden exist
*
* @true on match , false if not
*********************************************************/
native warden_exist();
/*********************************************************
* returns if client is warden
*
* @param client The client to run the check on
* @true on match, false if not
*********************************************************/
native warden_iswarden(client);
/*********************************************************
* Set a client as warden
*
* @param client The client to set as warden
* @NoReturn
*********************************************************/
native warden_set(client);
/*********************************************************
* Removes the current warden if he exists
*
* @param client The warden client to remove
* @NoReturn
*********************************************************/
native warden_remove(client);