BONE_CALLBACK_DISCONNECT

Description
Called when a BONEHANDLE is disconnected.  Note that the BONEHANDLE is now invalid and must be recreated using bone_create() if you wish to use it again.

Example

bone_setcallback(BONE_CALLBACK_DISCONNECT, callback_disconnect);

void callback_disconnect(BONEHANDLE bhnd)
{
    printf("I have been disconnected.\n");
}