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

    The IG_util_version_get function has been deprecated and will be removed from the public API in a future release. Use IG_util_version_get_ex instead. This utility retrieves text information about the ImageGear product name, platform, and version.

    Declaration:

     
    Copy Code
    VOID ACCUAPI IG_util_version_get(
            [OUT] LPCHAR lpStr
    );
    

    Arguments:

    Name Type Description
    lpStr LPCHAR Pointer to an array of chars where necessary string is returned.

    Return Value:

    This function does not return any values.

    Supported Raster Image Formats:

    This function does not process image pixels.

    Sample:

    MFC

    Example:

     
    Copy Code
    CHAR szBuf[256];
     ...
    IG_util_version_get( szBuf );
     ...