Returns information of the library version.
const IppLibraryVersion* ippjGetLibVersion(void);
The function ippjGetLibVersion is declared in the ippj.h file. This function returns a pointer to a static data structure IppLibraryVersion that contains information about the current version of the Intel IPP JPEG codec library. There is no need to free memory referenced by this pointer, as it points to a static variable. The IppLibraryVersion structure contains the following fields:
major |
The major number of the current library version. |
minor |
The minor number of the current library version. |
Name |
The name of the library. |
Version |
The library version ASCII string. |
BuildDate |
The library version build date. |
The return value of the function is a pointer to the structure IppLibraryVersion.
Copyright © 2000 - 2011, Intel Corporation. All rights reserved.