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
63289cd6
Commit
63289cd6
authored
Oct 18, 2004
by
Stefan Leichter
Committed by
Alexandre Julliard
Oct 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for CryptCATAdminAcquireContext.
parent
c5c93d18
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
wintrust.spec
dlls/wintrust/wintrust.spec
+1
-1
wintrust_main.c
dlls/wintrust/wintrust_main.c
+11
-0
No files found.
dlls/wintrust/wintrust.spec
View file @
63289cd6
@ st
ub CryptCATAdminAcquireContext
@ st
dcall CryptCATAdminAcquireContext(long ptr long)
@ stub CryptCATAdminCalcHashFromFileHandle
@ stub CryptCATAdminEnumCatalogFromHash
@ stub CryptCATAdminPauseServiceForBackup
...
...
dlls/wintrust/wintrust_main.c
View file @
63289cd6
...
...
@@ -30,6 +30,17 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
wintrust
);
/***********************************************************************
* CryptCATAdminAcquireContext (WINTRUST.@)
*/
BOOL
WINAPI
CryptCATAdminAcquireContext
(
/* HCATADMIN */
void
*
catAdmin
,
GUID
*
sysSystem
,
DWORD
dwFlags
)
{
FIXME
(
"%p %s %lx
\n
"
,
catAdmin
,
debugstr_guid
(
sysSystem
),
dwFlags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
/***********************************************************************
* WinVerifyTrust (WINTRUST.@)
*/
LONG
WINAPI
WinVerifyTrust
(
HWND
hwnd
,
GUID
*
ActionID
,
LPVOID
ActionData
)
...
...
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