diff --git a/docs/BOSS API Readme.html b/docs/BOSS API Readme.html index b05fc890..bff43ed7 100644 --- a/docs/BOSS API Readme.html +++ b/docs/BOSS API Readme.html @@ -135,6 +135,7 @@ This documentation is a work in progress, covering an API that is also still a w BOSS_API_ERROR_NO_MEMThe API was unable to allocate the required memory. BOSS_API_ERROR_INVALID_ARGS Invalid arguments were given for the function. BOSS_API_ERROR_NO_TAG_MAPNo Bash Tag map has been generated yet. + BOSS_API_ERROR_PATH_NOT_FOUNDA file or folder path could not be found. BOSS_API_RETURN_MAXMatches the value of the highest-numbered return code.

The following codes are used with boss_create_db to specify the game that the API acts for. @@ -159,7 +160,7 @@ This documentation is a work in progress, covering an API that is also still a w

Error Handling Functions

-unsigned int boss_get_error_message (char ** message); +unsigned int boss_get_error_message (const char ** const message);

Outputs a string detailing the last error encountered.

-unsigned int boss_get_version (unsigned int * versionMajor, - unsigned int * versionMinor, - unsigned int * versionPatch); +unsigned int boss_get_version (unsigned int * const versionMajor, + unsigned int * const versionMinor, + unsigned int * const versionPatch);

Gets the version numbers of the API in use.