© 2016 Thorlabs Scientific Imaging
4 Programming (SDK)
233
4.3.40 is_GetDLLVersion
Syntax
INT is_GetDLLVersion()
Description
Returns the version of the uc480.dll.
Input parameters
<none>
Return values
The return value contains the version number which is coded as follows:
Related functions
is_GetOsVersion()
Example
int version = is_GetDLLVersion();
int build = version & 0xFFFF;
version = version >> 16;
int minor = version & 0xFF;
version = version >> 8;
int major = version & 0xFF;
printf("API version %d.%d.%d \n\n", major, minor, build);