// wiadef.h
typedef struct _WIA_MICR_INFO {
DWORD Size;
DWORD Page;
DWORD Length;
WCHAR Text[1];
} WIA_MICR_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The WIA_MICR_INFO structure stores information for one decoded MICR code.
SizeThe total size of this structure, in bytes.
PageThe page number where the MICR code was detected. A zero-based index referring to the current scan job.
LengthLength of the MICR text, in characters, excluding the length of the NULL terminator.
TextPlaceholder for a NULL terminated character string containing the MICR text.