BONE_CALLBACK_WELCOME

Description
Called when the Bone Server sends you a welcome message.

Example

bone_setcallback(BONE_CALLBACK_WELCOME, callback_welcome);

void callback_welcome(BONEHANDLE bhnd, const char *message)
{
    printf("%s\n",message);
}