Platform SDK: WinTrust

WINTRUST_BLOB_INFO

The WINTRUST_BLOB_INFO structure is used when calling WinVerifyTrust to verify a memory blob.

typedef struct WINTRUST_BLOB_INFO_
{
    DWORD               cbStruct; 
    LPCWSTR             pcwszDisplayName   
    DWORD               cbMem;
    BYTE                *pbMem;
} WINTRUST_BLOB_INFO, *PWINTRUST_BLOB_INFO;

Members

cbStruct
Count of bytes in this structure.
pcwszDisplayName
String with the name of the memory object pointed to by pbMem.
cbMem
Length in bytes of the memory blob to be verified
pbMem
Pointer to a memory blob to be verified.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 or later.
  Windows 95/98: Unsupported.
  Header: Declared in winbase.h.