LBase::VersionInfo

Summary

Retrieves version information about the current LEADTOOLS libraries.

Syntax

#include "ltwrappr.h"

static L_INT LBase::VersionInfo (pVersionInfo, uStructSize)

Parameters

pVERSIONINFO pVersionInfo

Pointer to a version information structure.

L_UINT uStructSize

Size of the VERSIONINFO structure pointed to by pVersionInfo. The size of this structure must be specified.

Returns

Value Meaning
SUCCESS The function was successful.
< SUCCESS An error occurred. Refer to Return Codes.

Comments

Call this function to retrieve version information about the current LEADTOOLS libraries.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Example

L_INT LBase__VersionInfoExample() 
{ 
	L_INT nRet; 
	VERSIONINFO VersionInfo; 
	 
	nRet = LBase::VersionInfo(&VersionInfo, sizeof(VERSIONINFO)); 
   
	return nRet; 
} 
Help Version 22.0.2023.2.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.