This function can be called to obtain the date of compilation of the version of ImageGear you are using.
| 
                        Copy Code
                     | |
|---|---|
| LPSTR ACCUAPI IG_version_compile_date (VOID); | |
Returns a FAR pointer to a string containing the compile date in the format given above. If there are no errors, the return value is IGE_SUCCESS.
This function does not process image pixels.
MFC, SHARED
| 
                        Copy Code
                     | |
|---|---|
| #include <string.h> char MyCompileDateString[12]; /* Will receive "Mmm dd yyyy" */ strcpy ( MyCompileDateString, IG_version_compile_date()) | |
The return value is a FAR pointer to a string in the form "Mmm dd yyyy", such as "Jul 04 2019."