AMD_DBGAPI
0.70.1
|
Version information about the interface and the associated installed library. More...
Macros | |
#define | AMD_DBGAPI_VERSION_MAJOR 0 |
The semantic version of the interface following [semver.org][semver] rules. More... | |
#define | AMD_DBGAPI_VERSION_MINOR 70 |
The minor version of the interface as a macro so it can be used by the preprocessor. More... | |
Functions | |
void AMD_DBGAPI | amd_dbgapi_get_version (uint32_t *major, uint32_t *minor, uint32_t *patch) AMD_DBGAPI_VERSION_0_54 |
Query the version of the installed library. More... | |
const char AMD_DBGAPI * | amd_dbgapi_get_build_name (void) AMD_DBGAPI_VERSION_0_54 |
Query the installed library build name. More... | |
Version information about the interface and the associated installed library.
#define AMD_DBGAPI_VERSION_MAJOR 0 |
The semantic version of the interface following [semver.org][semver] rules.
A client that uses this interface is only compatible with the installed library if the major version numbers match and the interface minor version number is less than or equal to the installed library minor version number. The major version of the interface as a macro so it can be used by the preprocessor.
#define AMD_DBGAPI_VERSION_MINOR 70 |
The minor version of the interface as a macro so it can be used by the preprocessor.
const char AMD_DBGAPI* amd_dbgapi_get_build_name | ( | void | ) |
Query the installed library build name.
This function can be used even when the library is not initialized.
void AMD_DBGAPI amd_dbgapi_get_version | ( | uint32_t * | major, |
uint32_t * | minor, | ||
uint32_t * | patch | ||
) |
Query the version of the installed library.
Return the version of the installed library. This can be used to check if it is compatible with this interface version. This function can be used even when the library is not initialized.
[out] | major | The major version number is stored if non-NULL. |
[out] | minor | The minor version number is stored if non-NULL. |
[out] | patch | The patch version number is stored if non-NULL. |