ImageEn, unit ievision

TIEVisionLibrary.getLibraryInfo

TIEVisionLibrary.getLibraryInfo


Declaration

function getLibraryInfo(info: TIEVisionLibraryInfo): TIEVisionString; safecall;


Description

Returns the library information (version, platform, etc).


Example

ShowMessage( Format('%s %s %s bit (filename: "%s", is trial: %s)', [
    IEVisionLib().getLibraryInfo(ievLIBNAME).c_str(),
    IEVisionLib().getLibraryInfo(ievLIBVERSION).c_str(),
    IEVisionLib().getLibraryInfo(ievLIBPLATFORM).c_str(),
    IEVisionLib().getLibraryInfo(ievLIBFILENAME).c_str(),
    IEVisionLib().getLibraryInfo(ievISTRIAL).c_str()]) );