Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
9a4401af
Commit
9a4401af
authored
Oct 21, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Get rid of no longer needed contextInterface arguments.
parent
217e0119
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
collectionstore.c
dlls/crypt32/collectionstore.c
+8
-8
No files found.
dlls/crypt32/collectionstore.c
View file @
9a4401af
...
...
@@ -148,7 +148,7 @@ static BOOL CRYPT_CollectionAddContext(WINE_COLLECTIONSTORE *store,
*/
static
context_t
*
CRYPT_CollectionAdvanceEnum
(
WINE_COLLECTIONSTORE
*
store
,
WINE_STORE_LIST_ENTRY
*
storeEntry
,
const
CONTEXT_FUNCS
*
contextFuncs
,
con
st
WINE_CONTEXT_INTERFACE
*
contextInterface
,
con
text_t
*
prev
)
context_t
*
prev
)
{
context_t
*
child
,
*
ret
;
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
);
ret
=
CRYPT_CollectionAdvanceEnum
(
store
,
storeNextEntry
,
storeNextContexts
,
contextInterface
,
NULL
);
storeNextContexts
,
NULL
);
}
else
{
...
...
@@ -235,7 +235,7 @@ static context_t *Collection_enumCert(WINECRYPT_CERTSTORE *store, context_t *pre
WINE_STORE_LIST_ENTRY
*
storeEntry
=
prev
->
u
.
ptr
;
ret
=
CRYPT_CollectionAdvanceEnum
(
cs
,
storeEntry
,
&
storeEntry
->
store
->
vtbl
->
certs
,
p
CertInterface
,
p
rev
);
&
storeEntry
->
store
->
vtbl
->
certs
,
prev
);
}
else
{
...
...
@@ -245,7 +245,7 @@ static context_t *Collection_enumCert(WINECRYPT_CERTSTORE *store, context_t *pre
WINE_STORE_LIST_ENTRY
,
entry
);
ret
=
CRYPT_CollectionAdvanceEnum
(
cs
,
storeEntry
,
&
storeEntry
->
store
->
vtbl
->
certs
,
pCertInterface
,
NULL
);
&
storeEntry
->
store
->
vtbl
->
certs
,
NULL
);
}
else
{
...
...
@@ -304,7 +304,7 @@ static context_t *Collection_enumCRL(WINECRYPT_CERTSTORE *store, context_t *prev
WINE_STORE_LIST_ENTRY
*
storeEntry
=
prev
->
u
.
ptr
;
ret
=
CRYPT_CollectionAdvanceEnum
(
cs
,
storeEntry
,
&
storeEntry
->
store
->
vtbl
->
crls
,
p
CRLInterface
,
p
rev
);
&
storeEntry
->
store
->
vtbl
->
crls
,
prev
);
}
else
{
...
...
@@ -314,7 +314,7 @@ static context_t *Collection_enumCRL(WINECRYPT_CERTSTORE *store, context_t *prev
WINE_STORE_LIST_ENTRY
,
entry
);
ret
=
CRYPT_CollectionAdvanceEnum
(
cs
,
storeEntry
,
&
storeEntry
->
store
->
vtbl
->
crls
,
pCRLInterface
,
NULL
);
&
storeEntry
->
store
->
vtbl
->
crls
,
NULL
);
}
else
{
...
...
@@ -372,7 +372,7 @@ static context_t *Collection_enumCTL(WINECRYPT_CERTSTORE *store, context_t *prev
WINE_STORE_LIST_ENTRY
*
storeEntry
=
prev
->
u
.
ptr
;
ret
=
CRYPT_CollectionAdvanceEnum
(
cs
,
storeEntry
,
&
storeEntry
->
store
->
vtbl
->
ctls
,
p
CTLInterface
,
p
rev
);
&
storeEntry
->
store
->
vtbl
->
ctls
,
prev
);
}
else
{
...
...
@@ -382,7 +382,7 @@ static context_t *Collection_enumCTL(WINECRYPT_CERTSTORE *store, context_t *prev
WINE_STORE_LIST_ENTRY
,
entry
);
ret
=
CRYPT_CollectionAdvanceEnum
(
cs
,
storeEntry
,
&
storeEntry
->
store
->
vtbl
->
ctls
,
pCTLInterface
,
NULL
);
&
storeEntry
->
store
->
vtbl
->
ctls
,
NULL
);
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment