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
98350044
Commit
98350044
authored
May 30, 2007
by
James Hawkins
Committed by
Alexandre Julliard
May 31, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Add stub implementations for CryptCATAdminAddCatalog and…
wintrust: Add stub implementations for CryptCATAdminAddCatalog and CryptCATAdminReleaseCatalogContext.
parent
5b8641a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
2 deletions
+36
-2
crypt.c
dlls/wintrust/crypt.c
+34
-0
wintrust.spec
dlls/wintrust/wintrust.spec
+2
-2
No files found.
dlls/wintrust/crypt.c
View file @
98350044
...
...
@@ -55,6 +55,17 @@ BOOL WINAPI CryptCATAdminAcquireContext(HCATADMIN* catAdmin,
}
/***********************************************************************
* CryptCATAdminAddCatalog (WINTRUST.@)
*/
BOOL
WINAPI
CryptCATAdminAddCatalog
(
HCATADMIN
catAdmin
,
WCHAR
*
catalogFile
,
WCHAR
*
selectBaseName
,
DWORD
flags
)
{
FIXME
(
"%p %s %s %d
\n
"
,
catAdmin
,
debugstr_w
(
catalogFile
),
debugstr_w
(
selectBaseName
),
flags
);
return
TRUE
;
}
/***********************************************************************
* CryptCATAdminCalcHashFromFileHandle (WINTRUST.@)
*/
BOOL
WINAPI
CryptCATAdminCalcHashFromFileHandle
(
HANDLE
hFile
,
DWORD
*
pcbHash
,
...
...
@@ -80,6 +91,29 @@ HCATINFO WINAPI CryptCATAdminEnumCatalogFromHash(HCATADMIN hCatAdmin,
}
/***********************************************************************
* CryptCATAdminReleaseCatalogContext (WINTRUST.@)
*
* Release a catalog context handle.
*
* PARAMS
* hCatAdmin [I] Context handle.
* hCatInfo [I] Catalog handle.
* dwFlags [I] Reserved.
*
* RETURNS
* Success: TRUE.
* Failure: FAIL.
*
*/
BOOL
WINAPI
CryptCATAdminReleaseCatalogContext
(
HCATADMIN
hCatAdmin
,
HCATADMIN
hCatInfo
,
DWORD
dwFlags
)
{
FIXME
(
"%p %p %x
\n
"
,
hCatAdmin
,
hCatInfo
,
dwFlags
);
return
TRUE
;
}
/***********************************************************************
* CryptCATAdminReleaseContext (WINTRUST.@)
*
* Release a catalog administrator context handle.
...
...
dlls/wintrust/wintrust.spec
View file @
98350044
@ stub AddPersonalTrustDBPages
@ stub CatalogCompactHashDatabase
@ stdcall CryptCATAdminAcquireContext(long ptr long)
@ st
ub CryptCATAdminAddCatalog
@ st
dcall CryptCATAdminAddCatalog(long wstr wstr long)
@ stdcall CryptCATAdminCalcHashFromFileHandle(long ptr ptr long)
@ stdcall CryptCATAdminEnumCatalogFromHash(long ptr long long ptr)
@ stub CryptCATAdminPauseServiceForBackup
@ st
ub CryptCATAdminReleaseCatalogContext
@ st
dcall CryptCATAdminReleaseCatalogContext(long long long)
@ stdcall CryptCATAdminReleaseContext(long long)
@ stdcall CryptCATAdminRemoveCatalog(ptr wstr long)
@ stub CryptCATAdminResolveCatalogPath
...
...
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