Hi Teamspeak team,
what is the purpose of this variable toKickCount and how, shortly, it works ?
The perm function are here to create rules like "this client can kick this kickClient from this channel" is that correct ?
I'm working on the C# Library for server sdk 
Thanks in advance for your help
Code:
Control if kicking a client from a channel is allowed:
unsigned int permClientKickFromChannel( serverID,
client,
toKickCount,
toKickClients,
reasonText);
uint64 serverID;
const struct ClientMiniExport* client;
int toKickCount;
struct ClientMiniExport* toKickClients;
const char* reasonText;