ImageGear Professional DLL v18.1 for Windows
IG_version_compile_date
Send Feedback
ImageGear Professional v18.1 > API Reference Guide > Core Component API Reference > Core Component Functions Reference > Version Functions > IG_version_compile_date

Glossary Item Box

This function can be called to obtain the date of compilation of the version of ImageGear you are using.

Declaration:

  Copy Code
LPSTR ACCUAPI IG_version_compile_date (VOID);

Return Value:

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.

Supported Raster Image Formats:

This function does not process image pixels.

Sample:

MFC, SHARED

Example:

  Copy Code
#include <string.h>
char      MyCompileDateString[12]; /* Will receive "Mmm dd yyyy" */
strcpy ( MyCompileDateString, IG_version_compile_date())

Remarks:

The return value is a FAR pointer to a string in the form "Mmm dd yyyy", such as "Jul 04 2010."

©2014. Accusoft Corporation. All Rights Reserved.