crypt32: Get rid of no longer needed contextInterface arguments.
This commit is contained in:
parent
217e0119d9
commit
9a4401afcb
|
@ -148,7 +148,7 @@ static BOOL CRYPT_CollectionAddContext(WINE_COLLECTIONSTORE *store,
|
||||||
*/
|
*/
|
||||||
static context_t *CRYPT_CollectionAdvanceEnum(WINE_COLLECTIONSTORE *store,
|
static context_t *CRYPT_CollectionAdvanceEnum(WINE_COLLECTIONSTORE *store,
|
||||||
WINE_STORE_LIST_ENTRY *storeEntry, const CONTEXT_FUNCS *contextFuncs,
|
WINE_STORE_LIST_ENTRY *storeEntry, const CONTEXT_FUNCS *contextFuncs,
|
||||||
const WINE_CONTEXT_INTERFACE *contextInterface, context_t *prev)
|
context_t *prev)
|
||||||
{
|
{
|
||||||
context_t *child, *ret;
|
context_t *child, *ret;
|
||||||
struct list *storeNext = list_next(&store->stores, &storeEntry->entry);
|
struct list *storeNext = list_next(&store->stores, &storeEntry->entry);
|
||||||
|
@ -188,7 +188,7 @@ static context_t *CRYPT_CollectionAdvanceEnum(WINE_COLLECTIONSTORE *store,
|
||||||
(CONTEXT_FUNCS*)((LPBYTE)storeNextEntry->store->vtbl + offset);
|
(CONTEXT_FUNCS*)((LPBYTE)storeNextEntry->store->vtbl + offset);
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(store, storeNextEntry,
|
ret = CRYPT_CollectionAdvanceEnum(store, storeNextEntry,
|
||||||
storeNextContexts, contextInterface, NULL);
|
storeNextContexts, NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -235,7 +235,7 @@ static context_t *Collection_enumCert(WINECRYPT_CERTSTORE *store, context_t *pre
|
||||||
WINE_STORE_LIST_ENTRY *storeEntry = prev->u.ptr;
|
WINE_STORE_LIST_ENTRY *storeEntry = prev->u.ptr;
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
||||||
&storeEntry->store->vtbl->certs, pCertInterface, prev);
|
&storeEntry->store->vtbl->certs, prev);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -245,7 +245,7 @@ static context_t *Collection_enumCert(WINECRYPT_CERTSTORE *store, context_t *pre
|
||||||
WINE_STORE_LIST_ENTRY, entry);
|
WINE_STORE_LIST_ENTRY, entry);
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
||||||
&storeEntry->store->vtbl->certs, pCertInterface, NULL);
|
&storeEntry->store->vtbl->certs, NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -304,7 +304,7 @@ static context_t *Collection_enumCRL(WINECRYPT_CERTSTORE *store, context_t *prev
|
||||||
WINE_STORE_LIST_ENTRY *storeEntry = prev->u.ptr;
|
WINE_STORE_LIST_ENTRY *storeEntry = prev->u.ptr;
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
||||||
&storeEntry->store->vtbl->crls, pCRLInterface, prev);
|
&storeEntry->store->vtbl->crls, prev);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -314,7 +314,7 @@ static context_t *Collection_enumCRL(WINECRYPT_CERTSTORE *store, context_t *prev
|
||||||
WINE_STORE_LIST_ENTRY, entry);
|
WINE_STORE_LIST_ENTRY, entry);
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
||||||
&storeEntry->store->vtbl->crls, pCRLInterface, NULL);
|
&storeEntry->store->vtbl->crls, NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -372,7 +372,7 @@ static context_t *Collection_enumCTL(WINECRYPT_CERTSTORE *store, context_t *prev
|
||||||
WINE_STORE_LIST_ENTRY *storeEntry = prev->u.ptr;
|
WINE_STORE_LIST_ENTRY *storeEntry = prev->u.ptr;
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
||||||
&storeEntry->store->vtbl->ctls, pCTLInterface, prev);
|
&storeEntry->store->vtbl->ctls, prev);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -382,7 +382,7 @@ static context_t *Collection_enumCTL(WINECRYPT_CERTSTORE *store, context_t *prev
|
||||||
WINE_STORE_LIST_ENTRY, entry);
|
WINE_STORE_LIST_ENTRY, entry);
|
||||||
|
|
||||||
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
ret = CRYPT_CollectionAdvanceEnum(cs, storeEntry,
|
||||||
&storeEntry->store->vtbl->ctls, pCTLInterface, NULL);
|
&storeEntry->store->vtbl->ctls, NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue