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
eacc0b82
Commit
eacc0b82
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 PWINE_FILESTOREINFO typedef.
parent
f4c8c3d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
filestore.c
dlls/crypt32/filestore.c
+10
-10
No files found.
dlls/crypt32/filestore.c
View file @
eacc0b82
...
...
@@ -33,11 +33,11 @@ typedef struct _WINE_FILESTOREINFO
HANDLE
file
;
DWORD
type
;
BOOL
dirty
;
}
WINE_FILESTOREINFO
,
*
PWINE_FILESTOREINFO
;
}
WINE_FILESTOREINFO
;
static
void
WINAPI
CRYPT_FileCloseStore
(
HCERTSTORE
hCertStore
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %08x)
\n
"
,
store
,
dwFlags
);
if
(
store
->
dirty
)
...
...
@@ -50,7 +50,7 @@ static void WINAPI CRYPT_FileCloseStore(HCERTSTORE hCertStore, DWORD dwFlags)
static
BOOL
WINAPI
CRYPT_FileWriteCert
(
HCERTSTORE
hCertStore
,
PCCERT_CONTEXT
cert
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %p, %d)
\n
"
,
hCertStore
,
cert
,
dwFlags
);
store
->
dirty
=
TRUE
;
...
...
@@ -60,7 +60,7 @@ static BOOL WINAPI CRYPT_FileWriteCert(HCERTSTORE hCertStore,
static
BOOL
WINAPI
CRYPT_FileDeleteCert
(
HCERTSTORE
hCertStore
,
PCCERT_CONTEXT
pCertContext
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %p, %08x)
\n
"
,
hCertStore
,
pCertContext
,
dwFlags
);
store
->
dirty
=
TRUE
;
...
...
@@ -70,7 +70,7 @@ static BOOL WINAPI CRYPT_FileDeleteCert(HCERTSTORE hCertStore,
static
BOOL
WINAPI
CRYPT_FileWriteCRL
(
HCERTSTORE
hCertStore
,
PCCRL_CONTEXT
crl
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %p, %d)
\n
"
,
hCertStore
,
crl
,
dwFlags
);
store
->
dirty
=
TRUE
;
...
...
@@ -80,7 +80,7 @@ static BOOL WINAPI CRYPT_FileWriteCRL(HCERTSTORE hCertStore,
static
BOOL
WINAPI
CRYPT_FileDeleteCRL
(
HCERTSTORE
hCertStore
,
PCCRL_CONTEXT
pCrlContext
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %p, %08x)
\n
"
,
hCertStore
,
pCrlContext
,
dwFlags
);
store
->
dirty
=
TRUE
;
...
...
@@ -90,7 +90,7 @@ static BOOL WINAPI CRYPT_FileDeleteCRL(HCERTSTORE hCertStore,
static
BOOL
WINAPI
CRYPT_FileWriteCTL
(
HCERTSTORE
hCertStore
,
PCCTL_CONTEXT
ctl
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %p, %d)
\n
"
,
hCertStore
,
ctl
,
dwFlags
);
store
->
dirty
=
TRUE
;
...
...
@@ -100,7 +100,7 @@ static BOOL WINAPI CRYPT_FileWriteCTL(HCERTSTORE hCertStore,
static
BOOL
WINAPI
CRYPT_FileDeleteCTL
(
HCERTSTORE
hCertStore
,
PCCTL_CONTEXT
pCtlContext
,
DWORD
dwFlags
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
TRACE
(
"(%p, %p, %08x)
\n
"
,
hCertStore
,
pCtlContext
,
dwFlags
);
store
->
dirty
=
TRUE
;
...
...
@@ -128,7 +128,7 @@ static BOOL CRYPT_ReadBlobFromFile(HANDLE file, PCERT_BLOB blob)
static
BOOL
WINAPI
CRYPT_FileControl
(
HCERTSTORE
hCertStore
,
DWORD
dwFlags
,
DWORD
dwCtrlType
,
void
const
*
pvCtrlPara
)
{
PWINE_FILESTOREINFO
store
=
hCertStore
;
WINE_FILESTOREINFO
*
store
=
hCertStore
;
BOOL
ret
;
TRACE
(
"(%p, %08x, %d, %p)
\n
"
,
hCertStore
,
dwFlags
,
dwCtrlType
,
...
...
@@ -216,7 +216,7 @@ static WINECRYPT_CERTSTORE *CRYPT_CreateFileStore(DWORD dwFlags,
HCERTSTORE
memStore
,
HANDLE
file
,
DWORD
type
)
{
WINECRYPT_CERTSTORE
*
store
=
NULL
;
PWINE_FILESTOREINFO
info
=
CryptMemAlloc
(
sizeof
(
WINE_FILESTOREINFO
));
WINE_FILESTOREINFO
*
info
=
CryptMemAlloc
(
sizeof
(
WINE_FILESTOREINFO
));
if
(
info
)
{
...
...
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