Include cleanup Part 1

Part 2 will be the simlink creations when i figure that out.
This commit is contained in:
zaCade
2018-08-17 17:56:21 +02:00
parent f9106793ba
commit 0b0a0a278a
26 changed files with 95 additions and 1335 deletions
@@ -0,0 +1,34 @@
#if defined _admingroups_included_
#endinput
#endif
#define _admingroups_included_
/**
* Create a admin group.
*
* @param group Name of the group to create.
*/
native void AdminGroups_CreateAdminGroup(const char[] group);
/**
* Delete a admin group.
*
* @param group Name of the group to delete.
*/
native void AdminGroups_DeleteAdminGroup(const char[] group);
/**
* Grant a admin group.
*
* @param client Client to grant to.
* @param group Name of the group to grant.
*/
native void AdminGroups_GrantAdminGroup(int client, const char[] group);
/**
* Revoke a admin group.
*
* @param client Client to revoke from.
* @param group Name of the group to revoke.
*/
native void AdminGroups_RevokeAdminGroup(int client, const char[] group);