BONE_CALLBACK_CHANNELDELUSER

Description
Called when a client exits a channel.

Example

bone_setcallback(BONE_CALLBACK_CHANNELDELUSER, callback_channeldeluser);

void callback_channeldeluser(BONEHANDLE bhnd, const char *channel, const char *username)
{
    printf("%s just left %s.\n", username, channel);
}