Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0a5cb15f
Commit
0a5cb15f
authored
Sep 04, 2013
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Get rid of remaining P* typedefs.
parent
cc7b0d40
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
cert.c
dlls/crypt32/cert.c
+1
-1
chain.c
dlls/crypt32/chain.c
+1
-1
msg.c
dlls/crypt32/msg.c
+4
-4
serialize.c
dlls/crypt32/serialize.c
+4
-4
store.c
dlls/crypt32/store.c
+2
-2
No files found.
dlls/crypt32/cert.c
View file @
0a5cb15f
...
...
@@ -1739,7 +1739,7 @@ typedef struct _OLD_CERT_REVOCATION_STATUS {
DWORD
dwIndex
;
DWORD
dwError
;
DWORD
dwReason
;
}
OLD_CERT_REVOCATION_STATUS
,
*
POLD_CERT_REVOCATION_STATUS
;
}
OLD_CERT_REVOCATION_STATUS
;
typedef
BOOL
(
WINAPI
*
CertVerifyRevocationFunc
)(
DWORD
,
DWORD
,
DWORD
,
void
**
,
DWORD
,
PCERT_REVOCATION_PARA
,
PCERT_REVOCATION_STATUS
);
...
...
dlls/crypt32/chain.c
View file @
0a5cb15f
...
...
@@ -2548,7 +2548,7 @@ static PCERT_CHAIN_ELEMENT CRYPT_FindIthElementInChain(
typedef
struct
_CERT_CHAIN_PARA_NO_EXTRA_FIELDS
{
DWORD
cbSize
;
CERT_USAGE_MATCH
RequestedUsage
;
}
CERT_CHAIN_PARA_NO_EXTRA_FIELDS
,
*
PCERT_CHAIN_PARA_NO_EXTRA_FIELDS
;
}
CERT_CHAIN_PARA_NO_EXTRA_FIELDS
;
static
void
CRYPT_VerifyChainRevocation
(
PCERT_CHAIN_CONTEXT
chain
,
LPFILETIME
pTime
,
HCERTSTORE
hAdditionalStore
,
...
...
dlls/crypt32/msg.c
View file @
0a5cb15f
...
...
@@ -603,20 +603,20 @@ typedef struct _CMSG_SIGNER_ENCODE_INFO_WITH_CMS
CERT_ID
SignerId
;
CRYPT_ALGORITHM_IDENTIFIER
HashEncryptionAlgorithm
;
void
*
pvHashEncryptionAuxInfo
;
}
CMSG_SIGNER_ENCODE_INFO_WITH_CMS
,
*
PCMSG_SIGNER_ENCODE_INFO_WITH_CMS
;
}
CMSG_SIGNER_ENCODE_INFO_WITH_CMS
;
typedef
struct
_CMSG_SIGNED_ENCODE_INFO_WITH_CMS
{
DWORD
cbSize
;
DWORD
cSigners
;
PCMSG_SIGNER_ENCODE_INFO_WITH_CMS
rgSigners
;
CMSG_SIGNER_ENCODE_INFO_WITH_CMS
*
rgSigners
;
DWORD
cCertEncoded
;
PCERT_BLOB
rgCertEncoded
;
DWORD
cCrlEncoded
;
PCRL_BLOB
rgCrlEncoded
;
DWORD
cAttrCertEncoded
;
PCERT_BLOB
rgAttrCertEncoded
;
}
CMSG_SIGNED_ENCODE_INFO_WITH_CMS
,
*
PCMSG_SIGNED_ENCODE_INFO_WITH_CMS
;
}
CMSG_SIGNED_ENCODE_INFO_WITH_CMS
;
static
BOOL
CRYPT_IsValidSigner
(
const
CMSG_SIGNER_ENCODE_INFO_WITH_CMS
*
signer
)
{
...
...
@@ -1474,7 +1474,7 @@ typedef struct _CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS
PCERT_BLOB
rgAttrCertEncoded
;
DWORD
cUnprotectedAttr
;
PCRYPT_ATTRIBUTE
rgUnprotectedAttr
;
}
CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS
,
*
PCMSG_ENVELOPED_ENCODE_INFO_WITH_CMS
;
}
CMSG_ENVELOPED_ENCODE_INFO_WITH_CMS
;
typedef
struct
_CEnvelopedEncodeMsg
{
...
...
dlls/crypt32/serialize.c
View file @
0a5cb15f
...
...
@@ -37,7 +37,7 @@ typedef struct _WINE_CERT_PROP_HEADER
DWORD
propID
;
DWORD
unknown
;
/* always 1 */
DWORD
cb
;
}
WINE_CERT_PROP_HEADER
,
*
PWINE_CERT_PROP_HEADER
;
}
WINE_CERT_PROP_HEADER
;
static
BOOL
CRYPT_SerializeStoreElement
(
const
void
*
context
,
const
BYTE
*
encodedContext
,
DWORD
cbEncodedContext
,
DWORD
contextPropID
,
...
...
@@ -80,7 +80,7 @@ static BOOL CRYPT_SerializeStoreElement(const void *context,
}
else
{
PWINE_CERT_PROP_HEADER
hdr
;
WINE_CERT_PROP_HEADER
*
hdr
;
DWORD
bufSize
=
0
;
LPBYTE
buf
=
NULL
;
...
...
@@ -109,7 +109,7 @@ static BOOL CRYPT_SerializeStoreElement(const void *context,
&
propSize
);
if
(
ret
)
{
hdr
=
(
PWINE_CERT_PROP_HEADER
)
pbElement
;
hdr
=
(
WINE_CERT_PROP_HEADER
*
)
pbElement
;
hdr
->
propID
=
prop
;
hdr
->
unknown
=
1
;
hdr
->
cb
=
propSize
;
...
...
@@ -128,7 +128,7 @@ static BOOL CRYPT_SerializeStoreElement(const void *context,
}
while
(
ret
&&
prop
!=
0
);
CryptMemFree
(
buf
);
hdr
=
(
PWINE_CERT_PROP_HEADER
)
pbElement
;
hdr
=
(
WINE_CERT_PROP_HEADER
*
)
pbElement
;
hdr
->
propID
=
contextPropID
;
hdr
->
unknown
=
1
;
hdr
->
cb
=
cbEncodedContext
;
...
...
dlls/crypt32/store.c
View file @
0a5cb15f
...
...
@@ -92,7 +92,7 @@ typedef struct _WINE_MEMSTORE
struct
ContextList
*
certs
;
struct
ContextList
*
crls
;
struct
ContextList
*
ctls
;
}
WINE_MEMSTORE
,
*
PWINE_MEMSTORE
;
}
WINE_MEMSTORE
;
void
CRYPT_InitStore
(
WINECRYPT_CERTSTORE
*
store
,
DWORD
dwFlags
,
CertStoreType
type
)
...
...
@@ -307,7 +307,7 @@ static void WINAPI CRYPT_MemCloseStore(HCERTSTORE hCertStore, DWORD dwFlags)
static
WINECRYPT_CERTSTORE
*
CRYPT_MemOpenStore
(
HCRYPTPROV
hCryptProv
,
DWORD
dwFlags
,
const
void
*
pvPara
)
{
PWINE_MEMSTORE
store
;
WINE_MEMSTORE
*
store
;
TRACE
(
"(%ld, %08x, %p)
\n
"
,
hCryptProv
,
dwFlags
,
pvPara
);
...
...
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