crypt32: Add stub for CERT_STORE_CTRL_AUTO_RESYNC of registry stores.

This commit is contained in:
Juan Lang 2010-05-14 13:37:26 -07:00 committed by Alexandre Julliard
parent 1f13973e85
commit c232af490e
1 changed files with 4 additions and 0 deletions

View File

@ -479,6 +479,10 @@ static BOOL WINAPI CRYPT_RegControl(HCERTSTORE hCertStore, DWORD dwFlags,
ret = CRYPT_RegFlushStore(store,
dwFlags & CERT_STORE_CTRL_COMMIT_FORCE_FLAG);
break;
case CERT_STORE_CTRL_AUTO_RESYNC:
FIXME("CERT_STORE_CTRL_AUTO_RESYNC: stub\n");
ret = TRUE;
break;
default:
FIXME("%d: stub\n", dwCtrlType);
ret = FALSE;