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
1f30d899
Commit
1f30d899
authored
Aug 29, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Sep 07, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wintrust: Add some documentation.
parent
dce0d05e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
register.c
dlls/wintrust/register.c
+34
-0
No files found.
dlls/wintrust/register.c
View file @
1f30d899
...
...
@@ -34,6 +34,25 @@ WINE_DEFAULT_DEBUG_CHANNEL(wintrust);
/***********************************************************************
* WintrustAddActionID (WINTRUST.@)
*
* Add the definitions of the actions a Trust provider can perform to
* the registry.
*
* PARAMS
* pgActionID [I] Pointer to a GUID for the Trust provider.
* fdwFlags [I] Flag to indicate whether registry errors are passed on.
* psProvInfo [I] Pointer to a structure with information about DLL
* name and functions.
*
* RETURNS
* Success: TRUE.
* Failure: FALSE. (Use GetLastError() for more information)
*
* NOTES
* Adding a Trust provider is basically only adding relevant information
* to the registry. No verification takes place whether a DLL or it's
* entrypoints exist.
* Information in the registry will always be overwritten.
*/
BOOL
WINAPI
WintrustAddActionID
(
GUID
*
pgActionID
,
DWORD
fdwFlags
,
CRYPT_REGISTER_ACTIONID
*
psProvInfo
)
...
...
@@ -45,6 +64,21 @@ BOOL WINAPI WintrustAddActionID( GUID* pgActionID, DWORD fdwFlags,
/***********************************************************************
* WintrustRemoveActionID (WINTRUST.@)
*
* Remove the definitions of the actions a Trust provider can perform
* from the registry.
*
* PARAMS
* pgActionID [I] Pointer to a GUID for the Trust provider.
*
* RETURNS
* Success: TRUE. (Use GetLastError() for more information)
* Failure: FALSE. (Use GetLastError() for more information)
*
* NOTES
* Testing shows that WintrustRemoveActionID always returns TRUE and
* that a possible error should be retrieved via GetLastError().
* There are no checks if the definitions are in the registry.
*/
BOOL
WINAPI
WintrustRemoveActionID
(
GUID
*
pgActionID
)
{
...
...
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