Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5aacc1df
Commit
5aacc1df
authored
Oct 22, 2008
by
Juan Lang
Committed by
Alexandre Julliard
Oct 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CertEnumPhysicalStore.
parent
5a5129b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-0
store.c
dlls/crypt32/store.c
+13
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
5aacc1df
...
...
@@ -35,6 +35,7 @@
@ stdcall CertEnumCTLsInStore(ptr ptr)
@ stdcall CertEnumCertificateContextProperties(ptr long)
@ stdcall CertEnumCertificatesInStore(long ptr)
@ stdcall CertEnumPhysicalStore(ptr long ptr ptr)
@ stdcall CertEnumSystemStore(long ptr ptr ptr)
@ stdcall CertFindAttribute(str long ptr)
@ stdcall CertFindCRLInStore(long long long long ptr ptr)
...
...
dlls/crypt32/store.c
View file @
5aacc1df
...
...
@@ -1330,3 +1330,16 @@ BOOL WINAPI CertEnumSystemStore(DWORD dwFlags, void *pvSystemStoreLocationPara,
SetLastError
(
rc
);
return
ret
;
}
BOOL
WINAPI
CertEnumPhysicalStore
(
const
void
*
pvSystemStore
,
DWORD
dwFlags
,
void
*
pvArg
,
PFN_CERT_ENUM_PHYSICAL_STORE
pfnEnum
)
{
if
(
dwFlags
&
CERT_SYSTEM_STORE_RELOCATE_FLAG
)
FIXME
(
"(%p, %08x, %p, %p): stub
\n
"
,
pvSystemStore
,
dwFlags
,
pvArg
,
pfnEnum
);
else
FIXME
(
"(%s, %08x, %p, %p): stub
\n
"
,
debugstr_w
((
LPCWSTR
)
pvSystemStore
),
dwFlags
,
pvArg
,
pfnEnum
);
return
FALSE
;
}
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