table of contents
other versions
- wheezy 1.4.1-4
WintrustAddActionID(3w) | Wine API | WintrustAddActionID(3w) |
NAME¶
WintrustAddActionID (WINTRUST.@)SYNOPSIS¶
BOOL WintrustAddActionID(
GUID* pgActionID,
DWORD fdwFlags,
CRYPT_REGISTER_ACTIONID* psProvInfo
)
DESCRIPTION¶
Add the definitions of the actions a Trust provider can perform to the registry.PARAMS¶
pgActionID [In] Pointer to a GUID for the Trust provider. fdwFlags [In] Flag to indicate whether registry errors are passed on. psProvInfo [In] Pointer to a structure with information about dll name and functions.RETURNS¶
Success: TRUE. Failure: FALSE. (Use GetLastError(3w) for more information).NOTES¶
Adding definitions 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.IMPLEMENTATION¶
Declared in "wintrust.h". Implemented in "dlls/wintrust/register.c". Debug channel "wintrust".Oct 2012 | Wine API |