Module: wine Branch: master Commit: c232af490e35795ff14eda755355a06c7ae7e366 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c232af490e35795ff14eda7553...
Author: Juan Lang juan.lang@gmail.com Date: Fri May 14 13:37:26 2010 -0700
crypt32: Add stub for CERT_STORE_CTRL_AUTO_RESYNC of registry stores.
---
dlls/crypt32/regstore.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/crypt32/regstore.c b/dlls/crypt32/regstore.c index 296b0c9..f4b4295 100644 --- a/dlls/crypt32/regstore.c +++ b/dlls/crypt32/regstore.c @@ -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;