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
7f0db794
Commit
7f0db794
authored
Jan 16, 2011
by
Juan Lang
Committed by
Alexandre Julliard
Jan 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
crypt32: Add stub for CertRegisterPhysicalStore.
parent
4d7e7339
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
0 deletions
+16
-0
crypt32.spec
dlls/crypt32/crypt32.spec
+1
-0
store.c
dlls/crypt32/store.c
+12
-0
wincrypt.h
include/wincrypt.h
+3
-0
No files found.
dlls/crypt32/crypt32.spec
View file @
7f0db794
...
...
@@ -77,6 +77,7 @@
@ stdcall CertOpenSystemStoreW(long wstr)
@ stdcall CertRDNValueToStrA(long ptr ptr long)
@ stdcall CertRDNValueToStrW(long ptr ptr long)
@ stdcall CertRegisterPhysicalStore(ptr long wstr ptr ptr)
@ stdcall CertRemoveEnhancedKeyUsageIdentifier(ptr str)
@ stdcall CertRemoveStoreFromCollection(ptr ptr)
@ stdcall CertSaveStore(ptr long long long ptr long)
...
...
dlls/crypt32/store.c
View file @
7f0db794
...
...
@@ -1465,3 +1465,15 @@ BOOL WINAPI CertEnumPhysicalStore(const void *pvSystemStore, DWORD dwFlags,
pfnEnum
);
return
FALSE
;
}
BOOL
WINAPI
CertRegisterPhysicalStore
(
const
void
*
pvSystemStore
,
DWORD
dwFlags
,
LPCWSTR
pwszStoreName
,
PCERT_PHYSICAL_STORE_INFO
pStoreInfo
,
void
*
pvReserved
)
{
if
(
dwFlags
&
CERT_SYSTEM_STORE_RELOCATE_FLAG
)
FIXME
(
"(%p, %08x, %s, %p, %p): stub
\n
"
,
pvSystemStore
,
dwFlags
,
debugstr_w
(
pwszStoreName
),
pStoreInfo
,
pvReserved
);
else
FIXME
(
"(%s, %08x, %s, %p, %p): stub
\n
"
,
debugstr_w
(
pvSystemStore
),
dwFlags
,
debugstr_w
(
pwszStoreName
),
pStoreInfo
,
pvReserved
);
return
FALSE
;
}
include/wincrypt.h
View file @
7f0db794
...
...
@@ -3999,6 +3999,9 @@ BOOL WINAPI CertEnumSystemStore(DWORD dwFlags, void *pvSystemStoreLocationPara,
BOOL
WINAPI
CertEnumPhysicalStore
(
const
void
*
pvSystemStore
,
DWORD
dwFlags
,
void
*
pvArg
,
PFN_CERT_ENUM_PHYSICAL_STORE
pfnEnum
);
BOOL
WINAPI
CertRegisterPhysicalStore
(
const
void
*
pvSystemStore
,
DWORD
dwFlags
,
LPCWSTR
pwszStoreName
,
PCERT_PHYSICAL_STORE_INFO
pStoreInfo
,
void
*
pvReserved
);
BOOL
WINAPI
CertSaveStore
(
HCERTSTORE
hCertStore
,
DWORD
dwMsgAndCertEncodingType
,
DWORD
dwSaveAs
,
DWORD
dwSaveTo
,
void
*
pvSaveToPara
,
DWORD
dwFlags
);
...
...
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