LBarCode::BarVersionInfo
#include "ltwrappr.h"
static L_INT LBarCode::BarVersionInfo(pBarCodeVersion, uStructSize)
pBARCODEVERSION pBarCodeVersion; |
/* pointer to a BARCODEVERSION structure */ |
L_UINT uStructSize; |
/* size of the BARCODEVERSION structure */ |
Loads LEADTOOLS Barcode product information into a structure.
Parameter |
Description |
pBarCodeVersion |
Pointer to the BARCODEVERSION structure to be updated with the barcode version information. |
uStructSize |
Size of the BARCODEVERSION structure, in bytes, for versioning. Use sizeof(BARCODEVERSION). |
Returns
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Comments
To use this function, declare a BARCODEVERSION variable and pass its address as the parameter of this function. The function updates the fields in the structure. For field descriptions, refer to the BARCODEVERSION structure.
Required DLLs and Libraries
LTBAR For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application |
See Also
Functions: |
|
Topics: |
Barcode Function Functions: Getting Barcode Version Information |
Example
For complete sample code, refer to the BarCode demo.
L_VOID GetBarCodeVerInfo(HWND hWnd)
{
BARCODEVERSION BarVerInfo; /* LEAD BARCODE Version Information structure. */
L_TCHAR szBuffer[1024]; /* Buffer to hold information for display. */
/* Get the bar code version information */
if (LBarCode::BarVersionInfo(&BarVerInfo, sizeof(BarVerInfo)) != SUCCESS)
return;
/* Format the message string with data from the BARCODEVERSION structure */
wsprintf(szBuffer, TEXT("LEAD Product: %hs\n\nVersion %d.%d\n\nDate: %hs\n\nTime: %s"),
(L_TCHAR L_FAR *)BarVerInfo.Product, BarVerInfo.MajorNumber,
BarVerInfo.MinorNumber, (L_TCHAR L_FAR *)BarVerInfo.Date, (L_TCHAR L_FAR *)BarVerInfo.Time);
/* Display the message string */
MessageBox(hWnd, szBuffer, TEXT("BARCODE Version Information"), MB_OK );
}