TeamSpeak SDK plug-in : get userID with UID

Hello,

I’m programing a teamspeak plug-in and I would like get a userID from user UID. I believe that it’s not possible, but I’m ask you, if you have a solution.

Thanks.

This is a fonction, I tried a lot of things but I can’t have my TS5 clientID.

anyID getMyTS5ID(uint64 serverConnectionHandlerID) {
 anyID myTs3Id = 0;
 ts3Functions.getClientID(serverConnectionHandlerID, &myTs3Id);
 char* myUid;
 ts3Functions.getClientSelfVariableAsString(serverConnectionHandlerID, CLIENT_UNIQUE_IDENTIFIER, &myUid);
 char* myIds;
 ts3Functions.requestClientIDs(serverConnectionHandlerID, myUid, &myIds);

 anyID myTs5Id;
 return &myTs5Id; //What I want

}