typedef struct _LWIACAPABILITYVALUES
{
L_UINT uStructSize;
pLWIACAPFLAGVALUES pCapFlagsValues;
pLWIACAPLISTVALUES pCapListValues;
pLWIACAPRANGEVALUES pCapRangeValues;
} LWIACAPABILITYVALUES, * pLWIACAPABILITYVALUES;
The LWIACAPABILITYVALUES structure provides information about the values for each enumerated WIA capability.
Size of this structure in bytes, for versioning. Use the sizeof() operator to calculate this value.
Pointer to the flag values structure.
Pointer to the list values structure.
Pointer to the range values structure.
This feature is available in LEADTOOLS version 16 or higher.
pLWIACAPABILITYVALUES is a pointer to an LWIACAPABILITYVALUES structure. If the function parameter type is LWIACAPABILITYVALUES, declare an LWIACAPABILITYVALUES variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pLWIACAPABILITYVALUES variable is necessary only if your program requires a pointer.
LWIACAPABILITYVALUES is used with the LWia::EnumCapabilities function.