This utility retrieves text information about the ImageGear product name, platform, and version.
Declaration:
|
Copy Code
|
VOID ACCUAPI IG_util_version_get_ex(
[OUT] LPCHAR lpStr,
[IN] INT bufferSize
);
|
Arguments:
Name |
Type |
Description |
lpStr |
LPCHAR |
Pointer to an array of chars where necessary string is returned. |
bufferSize |
INT |
Size of the lpStr array. |
Return Value:
This function does not return any values.
Supported Raster Image Formats:
This function does not process image pixels.
Sample:
None
Example:
|
Copy Code
|
CHAR szBuf[256];
...
IG_util_version_get_ex( szBuf, sizeof(szBuf) );
...
|
Use this IG_util_version_get_ex function instead of IG_util_version_get which is unsafe and will be deprecated.