BONE_CALLBACK_INVITENOTIFY

Description
Called when a user invites you to an invite-only channel.

Example

bone_setcallback(BONE_CALLBACK_INVITENOTIFY, callback_invitenotify);

void callback_invitenotify(BONEHANDLE bhnd, const char *user, const char *channel)
{
    printf("%s has invited you to channel %s.\n", user, channel);
}