#include "ltwrappr.h"
L_INT LTwain::SetCustomDSData(pCustomData, pszFileName)
Sets the custom data of the TWAIN data source. This feature is available in version 16 or higher.
Pointer to a TW_CUSTOMDSDATA structure. This structure must be allocated and contains the custom data of the TWAIN data source to set. Pass NULL if you need to set the data from a file.
Character string that contains a file name for the custom data of a valid TWAIN data source to load from. Pass NULL to set the data using the pCustomData.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
To get the custom data of the TWAIN data source, call the LTwain::GetCustomDSData function.
To load the custom data of the TWAIN data source from a file, pass a valid file name to pszFileName and NULL to pCustomData.
Required DLLs and Libraries
L_INT LTwain__SetCustomDSDataExample(LTwain * plTwain, L_TCHAR * pszFileName)
{
L_INT nRet;
nRet = plTwain->SetCustomDSData(NULL, pszFileName);
if(nRet != SUCCESS)
{
MessageBox (NULL, TEXT("Failed to set custom data source data"), TEXT("ERROR"),
MB_OK);
return nRet;
}
return SUCCESS;
}