Learn how to evaluate and integrate the VNC SDK
Version.h¶
Obtain SDK version information. (more...)
Defines
| Modifier and Type | Name and Description |
|---|---|
| #define |
The compile-time major version number of the SDK. |
| #define |
The compile-time minor version number of the SDK. |
| #define |
The compile-time patch version number of the SDK. |
| #define |
The compile-time build number of the SDK. |
Functions
| Modifier and Type | Name and Description |
|---|---|
| function int |
Returns the runtime major version number of the SDK. |
| function int |
Returns the runtime minor version number of the SDK. |
| function int |
Returns the runtime patch version number of the SDK. |
| function int |
Returns the runtime build number of the SDK. |
Detailed description
Obtain SDK version information.
SDK versioning follows the Semantic Versioning conventions:
- A change in major number indicates an incompatible change.
- A change in minor number only indicates extra functionality added in a backwards-compatible manner, preserving source compatibility but requiring recompilation against the new headers.
- A change in patch number only indicates backwards-compatible bug fixes, preserving binary compatibility.
Defines
-
VNC_SDK_MAJOR_VERSION¶ The compile-time major version number of the SDK.
-
VNC_SDK_MINOR_VERSION¶ The compile-time minor version number of the SDK.
-
VNC_SDK_PATCH_VERSION¶ The compile-time patch version number of the SDK.
-
VNC_SDK_BUILD_NUMBER¶ The compile-time build number of the SDK.
Functions
-
int
vnc_getMajorVersion(void)¶ Returns the runtime major version number of the SDK.
-
int
vnc_getMinorVersion(void)¶ Returns the runtime minor version number of the SDK.
-
int
vnc_getPatchVersion(void)¶ Returns the runtime patch version number of the SDK.
-
int
vnc_getBuildNumber(void)¶ Returns the runtime build number of the SDK.