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
1550f5ef
Commit
1550f5ef
authored
Aug 09, 2004
by
Stefan Leichter
Committed by
Alexandre Julliard
Aug 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for CertFindCertificateInStore.
parent
26ae2dd3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
cert.c
dlls/crypt32/cert.c
+10
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-1
winerror.h
include/winerror.h
+1
-0
No files found.
dlls/crypt32/cert.c
View file @
1550f5ef
...
...
@@ -78,3 +78,13 @@ BOOL WINAPI CertFreeCertificateContext( PCCERT_CONTEXT pCertContext )
FIXME
(
"%p stub
\n
"
,
pCertContext
);
return
TRUE
;
}
PCCERT_CONTEXT
WINAPI
CertFindCertificateInStore
(
HCERTSTORE
hCertStore
,
DWORD
dwCertEncodingType
,
DWORD
dwFlags
,
DWORD
dwType
,
const
void
*
pvPara
,
PCCERT_CONTEXT
pPrevCertContext
)
{
FIXME
(
"stub: %p %ld %ld %ld %p %p"
,
hCertStore
,
dwCertEncodingType
,
dwFlags
,
dwType
,
pvPara
,
pPrevCertContext
);
SetLastError
(
CRYPT_E_NOT_FOUND
);
return
NULL
;
}
dlls/crypt32/crypt32.spec
View file @
1550f5ef
...
...
@@ -34,7 +34,7 @@
@ stdcall CertEnumCertificatesInStore(long ptr)
@ stub CertFindAttribute
@ stub CertFindCTLInStore
@ st
ub CertFindCertificateInStore
@ st
dcall CertFindCertificateInStore(long long long long ptr ptr)
@ stub CertFindExtension
@ stub CertFindRDNAttr
@ stub CertFindSubjectInCTL
...
...
include/winerror.h
View file @
1550f5ef
...
...
@@ -2057,6 +2057,7 @@
#define SEC_E_MULTIPLE_ACCOUNTS _HRESULT_TYPEDEF_(0x80090347L)
#define SEC_E_NO_KERB_KEY _HRESULT_TYPEDEF_(0x80090348L)
#define CRYPT_E_NOT_FOUND _HRESULT_TYPEDEF_(0x80092004L)
#define CRYPT_E_REVOKED _HRESULT_TYPEDEF_(0x80092010L)
#define CRYPT_E_NO_REVOCATION_CHECK _HRESULT_TYPEDEF_(0x80092012L)
#define CRYPT_E_REVOCATION_OFFLINE _HRESULT_TYPEDEF_(0x80092013L)
...
...
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