Hand Held Products 4X00 Digital Camera User Manual


 
2 - 36 IMAGETEAM™ 4X00 Series Software Development Kit (SDK) User’s Guide
oemGetSetupPostnet
This function is used to get the Postnet symbology-specific options.
Result_t oemGetSetupPostnet (
SetupType_t SetupType,
BOOL *pEnabled,
BOOL *bXmitCheckDigit
)
Return Values
RESULT_SUCCESS
RESULT_ERR_PARAMETER
Parameters
SetupType
SETUP_TYPE_CURRENT for current settings, or SETUP_TYPE_DEFAULT for default settings.
pEnabled
Points to a BOOL variable that contains the enabled state of this symbology upon returning from the function. A TRUE
means the symbology is enabled; a FALSE means the symbology is disabled.
bXmitCheckDigit
Points to a BOOL variable that determines if the engine will return the check digit as part of the data string after a
successful decode. If TRUE, the engine returns the check digit. If FALSE, the check digit is not returned. The default
value is FALSE.
oemGetSetupQR
This function is used to get the QR Code symbology-specific options.
Result_t oemGetSetupQR (
SetupType_t SetupType,
BOOL *pEnabled,
WORD *pMinLength,
WORD *pMaxLength
)
Return Values
RESULT_SUCCESS
RESULT_ERR_PARAMETER
Parameters
SetupType
SETUP_TYPE_CURRENT for current settings, or SETUP_TYPE_DEFAULT for default settings.
pEnabled
Points to a BOOL variable that contains the enabled state of this symbology upon returning from the function. A TRUE
means the symbology is enabled; a FALSE means the symbology is disabled.
pMinLength
Points to a WORD variable that contains the minimum length decoded QR Code message the engine should return.
QR Code messages smaller than this minimum length are not reported by the engine. The default value is 1.
pMaxLength
Points to a WORD variable that contains the maximum length decoded QR Code message the engine should return.
QR Code messages larger than this maximum length are reported by the engine. The default value is 3500.