int bone_init(int build)

Description
Initializes the Bone SDK.

Callback
None (returns immediately)

Notes
The function parameter is the build to initialize.  The function returns 0 for success and a non zero number for failure.  The constant BONEBUILD contains the build number of the SDK.
bone_init() must be called before any other functions in the API.

Example

if(bone_init(BONEBUILD))
{
    printf("Unable to initialize the Bone SDK(reason %d).\n", bone_getlasterror() );
}