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 for more information).

NOTES

Adding definitions is basically only adding relevant information to the registry. No verification takes place whether a dll or its entrypoints exist. Information in the registry will always be overwritten.

IMPLEMENTATION

Declared in "wintrust.h". https://source.winehq.org/source/include/wintrust.h

Implemented in "dlls/wintrust/register.c". https://source.winehq.org/source/dlls/wintrust/register.c

Debug channel "wintrust".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.