This utility returns text information about the ImageGear version.
|
Copy Code
|
|
|---|---|
VOID ACCUAPI IG_util_version_get(
[OUT] LPCHAR lpStr
);
|
|
| Name | Type | Description |
|---|---|---|
| lpStr | LPCHAR | Pointer to an array of chars where necessary string is returned. |
Returns the number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.
This function does not process image pixels.
MFC
|
Copy Code
|
|
|---|---|
CHAR szBuf[256]; ... IG_util_version_get( szBuf ); ... |
|