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
b7bf91f5
Commit
b7bf91f5
authored
Sep 11, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 12, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Fix the I_Crypt*Asn1*() prototypes. Add the i_cryptasn1tls.h header and use it.
parent
2eeb4eaf
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
10 deletions
+60
-10
chain.c
dlls/crypt32/chain.c
+2
-2
crypt32.spec
dlls/crypt32/crypt32.spec
+3
-2
main.c
dlls/crypt32/main.c
+13
-6
Makefile.in
include/Makefile.in
+1
-0
i_cryptasn1tls.h
include/i_cryptasn1tls.h
+41
-0
No files found.
dlls/crypt32/chain.c
View file @
b7bf91f5
...
...
@@ -178,7 +178,7 @@ BOOL WINAPI CertCreateCertificateChainEngine(PCERT_CHAIN_ENGINE_CONFIG pConfig,
return
ret
;
}
void
WINAPI
CertFreeCertificateChainEngine
(
HCERTCHAINENGINE
hChainEngine
)
VOID
WINAPI
CertFreeCertificateChainEngine
(
HCERTCHAINENGINE
hChainEngine
)
{
PCertificateChainEngine
engine
=
(
PCertificateChainEngine
)
hChainEngine
;
...
...
@@ -1008,7 +1008,7 @@ PCCERT_CHAIN_CONTEXT WINAPI CertDuplicateCertificateChain(
return
pChainContext
;
}
void
WINAPI
CertFreeCertificateChain
(
PCCERT_CHAIN_CONTEXT
pChainContext
)
VOID
WINAPI
CertFreeCertificateChain
(
PCCERT_CHAIN_CONTEXT
pChainContext
)
{
PCertificateChain
chain
=
(
PCertificateChain
)
pChainContext
;
...
...
dlls/crypt32/crypt32.spec
View file @
b7bf91f5
...
...
@@ -199,17 +199,18 @@
@ stdcall I_CryptFreeLruCache(ptr long long)
@ stdcall I_CryptFreeTls(long long)
@ stdcall I_CryptGetAsn1Decoder(long)
@ stdcall I_CryptGetAsn1Encoder(long)
@ stdcall I_CryptGetDefaultCryptProv(long)
@ stub I_CryptGetDefaultCryptProvForEncrypt
@ stdcall I_CryptGetOssGlobal(long)
@ stdcall I_CryptGetTls(long)
@ stub I_CryptInsertLruEntry
@ stdcall I_CryptInstallAsn1Module(
long long long
)
@ stdcall I_CryptInstallAsn1Module(
ptr long ptr
)
@ stdcall I_CryptInstallOssGlobal(long long long)
@ stdcall I_CryptReadTrustedPublisherDWORDValueFromRegistry(wstr ptr)
@ stub I_CryptReleaseLruEntry
@ stdcall I_CryptSetTls(long ptr)
@ stdcall I_CryptUninstallAsn1Module(
ptr
)
@ stdcall I_CryptUninstallAsn1Module(
long
)
@ stub I_CryptUninstallOssGlobal
@ stub PFXExportCertStore
@ stub PFXImportCertStore
...
...
dlls/crypt32/main.c
View file @
b7bf91f5
...
...
@@ -26,6 +26,7 @@
#include "wincrypt.h"
#include "winreg.h"
#include "winuser.h"
#include "i_cryptasn1tls.h"
#include "crypt32_private.h"
#include "wine/debug.h"
...
...
@@ -195,21 +196,27 @@ DWORD WINAPI I_CryptInstallOssGlobal(DWORD x, DWORD y, DWORD z)
return
ret
;
}
BOOL
WINAPI
I_CryptInstallAsn1Module
(
void
*
x
,
DWORD
y
,
DWORD
z
)
BOOL
WINAPI
I_CryptInstallAsn1Module
(
ASN1module_t
x
,
DWORD
y
,
void
*
z
)
{
FIXME
(
"
%p %08x %08x
\n
"
,
x
,
y
,
z
);
FIXME
(
"
(%p %08x %p): stub
\n
"
,
x
,
y
,
z
);
return
TRUE
;
}
BOOL
WINAPI
I_CryptUninstallAsn1Module
(
void
*
x
)
BOOL
WINAPI
I_CryptUninstallAsn1Module
(
HCRYPTASN1MODULE
x
)
{
FIXME
(
"
%p
\n
"
,
x
);
FIXME
(
"
(%08x): stub
\n
"
,
x
);
return
TRUE
;
}
void
*
WINAPI
I_CryptGetAsn1Decoder
(
long
x
)
ASN1decoding_t
WINAPI
I_CryptGetAsn1Decoder
(
HCRYPTASN1MODULE
x
)
{
FIXME
(
"%08lx
\n
"
,
x
);
FIXME
(
"(%08x): stub
\n
"
,
x
);
return
NULL
;
}
ASN1encoding_t
WINAPI
I_CryptGetAsn1Encoder
(
HCRYPTASN1MODULE
x
)
{
FIXME
(
"(%08x): stub
\n
"
,
x
);
return
NULL
;
}
...
...
include/Makefile.in
View file @
b7bf91f5
...
...
@@ -183,6 +183,7 @@ SRCDIR_INCLUDES = \
guiddef.h
\
hlguids.h
\
htmlhelp.h
\
i_cryptasn1tls.h
\
icm.h
\
icmpapi.h
\
idispids.h
\
...
...
include/i_cryptasn1tls.h
0 → 100644
View file @
b7bf91f5
/*
* Copyright (C) 2007 Francois Gouget
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_I_CRYPTASN1TLS_H
#define __WINE_I_CRYPTASN1TLS_H
typedef
void
*
ASN1decoding_t
;
typedef
void
*
ASN1encoding_t
;
typedef
void
*
ASN1module_t
;
typedef
DWORD
HCRYPTASN1MODULE
;
#ifdef __cplusplus
extern
"C"
{
#endif
ASN1decoding_t
WINAPI
I_CryptGetAsn1Decoder
(
HCRYPTASN1MODULE
);
ASN1encoding_t
WINAPI
I_CryptGetAsn1Encoder
(
HCRYPTASN1MODULE
);
BOOL
WINAPI
I_CryptInstallAsn1Module
(
ASN1module_t
,
DWORD
,
void
*
);
BOOL
WINAPI
I_CryptUninstallAsn1Module
(
HCRYPTASN1MODULE
);
#ifdef __cplusplus
}
#endif
#endif
/* __WINE_I_CRYPTASN1TLS_H */
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