// 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 referenceNo description available.
The WIAS_ENDORSER_INFO structure holds custom endorser token/value pairs.
ulPageCountSpecifies the value that will replace the $PAGE_COUNT$ token, provided that the endorser string contains that token.
ulNumEndorserValuesSpecifies the number of token/value pairs. This member will be 0 if there are no custom token/value pairs.
pEndorserValuesPoints 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.
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.