ImageGear for C and C++ on Windows v21.0 - Updated
API Reference Guide / Core Component API Reference / Core Component Functions Reference / Version Functions / IG_version_compile_date
In This Topic
    IG_version_compile_date
    In This Topic

    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 2019."