twain_32: Return TWRC_FAILURE/TWCC_NODS when we have no sources.

This commit is contained in:
Jeremy White 2009-01-28 08:53:10 -06:00 committed by Alexandre Julliard
parent 768c06d3e5
commit 620e81a982
2 changed files with 5 additions and 8 deletions

View File

@ -169,8 +169,8 @@ TW_UINT16 TWAIN_IdentityGetFirst (pTW_IDENTITY pOrigin, TW_MEMREF pData)
twain_autodetect();
if (!nrdevices) {
TRACE ("no entries found.\n");
DSM_twCC = TWCC_SUCCESS;
return TWRC_ENDOFLIST;
DSM_twCC = TWCC_NODS;
return TWRC_FAILURE;
}
DSM_currentDevice = 0;
*pSourceIdentity = devices[DSM_currentDevice++].identity;

View File

@ -150,12 +150,9 @@ static void test_sources(TW_IDENTITY *appid)
memset(&source, 0, sizeof(source));
rc = pDSM_Entry(appid, NULL, DG_CONTROL, DAT_IDENTITY, MSG_GETFIRST, &source);
get_condition_code(appid, NULL, &status);
todo_wine
ok(rc == TWRC_SUCCESS || rc == TWRC_FAILURE, "Get first error code, rc %d, cc %d\n", rc, status.ConditionCode);
if (rc == TWRC_SUCCESS)
ok(status.ConditionCode == TWCC_SUCCESS,"Get first invalid condition code, rc %d, cc %d\n", rc, status.ConditionCode);
if (rc == TWRC_FAILURE)
ok(status.ConditionCode == TWCC_NODS,"Get first invalid condition code, rc %d, cc %d\n", rc, status.ConditionCode);
ok( (rc == TWRC_SUCCESS && status.ConditionCode == TWCC_SUCCESS) ||
(rc == TWRC_FAILURE && status.ConditionCode == TWCC_NODS),
"Get first invalid condition code, rc %d, cc %d\n", rc, status.ConditionCode);
while (rc == TWRC_SUCCESS)
{