WIAS_ENDORSER_INFO - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wiamindr_lh.h

typedef struct _WIAS_ENDORSER_INFO {
  ULONG               ulPageCount;
  ULONG               ulNumEndorserValues;
  WIAS_ENDORSER_VALUE *pEndorserValues;
} WIAS_ENDORSER_INFO, *PWIAS_ENDORSER_INFO;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wiamindr_lh-_wias_endorser_info)

_WIAS_ENDORSER_INFO structure

Description

The WIAS_ENDORSER_INFO structure holds custom endorser token/value pairs.

Members

ulPageCount

Specifies the value that will replace the $PAGE_COUNT$ token, provided that the endorser string contains that token.

ulNumEndorserValues

Specifies the number of token/value pairs. This member will be 0 if there are no custom token/value pairs.

pEndorserValues

Points to an array of WIAS_ENDORSER_VALUE structures, holding custom token/value pairs. If the value of the ulNumEndorserValues member is 0, this member should be NULL.

Remarks

Currently, wiasParseEndorserString recognizes three endorser tokens: $DATE$, $TIME$, $PAGE_COUNT$, $DAY$, $MONTH$, and $YEAR$. (See wiamdef.h.) Any other tokens and their values must be specified in the pEndorserValues member of this structure.

See also

WIAS_ENDORSER_VALUE

wiasParseEndorserString