Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
c009f9c9
Commit
c009f9c9
authored
Oct 31, 2008
by
Aric Stewart
Committed by
Alexandre Julliard
Nov 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Static functions CertContext_GetProperty and CertContext_SetProperty do…
crypt32: Static functions CertContext_GetProperty and CertContext_SetProperty do not need to be WINAPI.
parent
c83ff712
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cert.c
dlls/crypt32/cert.c
+4
-4
No files found.
dlls/crypt32/cert.c
View file @
c009f9c9
...
...
@@ -37,7 +37,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(crypt);
* CertGetCertificateContextProperty, and are particular to the store in which
* the property exists (which is separate from the context.)
*/
static
BOOL
WINAPI
CertContext_GetProperty
(
void
*
context
,
DWORD
dwPropId
,
static
BOOL
CertContext_GetProperty
(
void
*
context
,
DWORD
dwPropId
,
void
*
pvData
,
DWORD
*
pcbData
);
/* Internal version of CertSetCertificateContextProperty that sets properties
...
...
@@ -45,7 +45,7 @@ static BOOL WINAPI CertContext_GetProperty(void *context, DWORD dwPropId,
* type.) Doesn't handle special cases, since they're handled by
* CertSetCertificateContextProperty anyway.
*/
static
BOOL
WINAPI
CertContext_SetProperty
(
void
*
context
,
DWORD
dwPropId
,
static
BOOL
CertContext_SetProperty
(
void
*
context
,
DWORD
dwPropId
,
DWORD
dwFlags
,
const
void
*
pvData
);
BOOL
WINAPI
CertAddEncodedCertificateToStore
(
HCERTSTORE
hCertStore
,
...
...
@@ -188,7 +188,7 @@ static BOOL CertContext_CopyParam(void *pvData, DWORD *pcbData, const void *pb,
return
ret
;
}
static
BOOL
WINAPI
CertContext_GetProperty
(
void
*
context
,
DWORD
dwPropId
,
static
BOOL
CertContext_GetProperty
(
void
*
context
,
DWORD
dwPropId
,
void
*
pvData
,
DWORD
*
pcbData
)
{
PCCERT_CONTEXT
pCertContext
=
(
PCCERT_CONTEXT
)
context
;
...
...
@@ -440,7 +440,7 @@ static BOOL CertContext_SetKeyProvInfoProperty(PCONTEXT_PROPERTY_LIST properties
return
ret
;
}
static
BOOL
WINAPI
CertContext_SetProperty
(
void
*
context
,
DWORD
dwPropId
,
static
BOOL
CertContext_SetProperty
(
void
*
context
,
DWORD
dwPropId
,
DWORD
dwFlags
,
const
void
*
pvData
)
{
PCONTEXT_PROPERTY_LIST
properties
=
...
...
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