typedef struct _tagRecogWords2
{
L_UINT uStructSize;
L_WCHAR szWord[DOC2_MAX_WORD_SIZE];
RECT rcWordArea;
L_INT nZoneIndex;
} RECOGWORDS2, * pRECOGWORDS2;
The RECOGWORDS2 structure provides information about a word that has been recognized.
Structure size. Set it to sizeof(RECOGWORDS2).
String containing the recognized word.
RECT structure that specifies the area where the recognized word occurs.
Index of the zone in the zone list containing the word.
pRECOGWORDS2 is a pointer to a RECOGWORDS2 structure. If the function parameter type is pRECOGWORDS2, declare a RECOGWORDS2 variable, update the structure's fields, and pass the variable's address in the parameter. Declaring a pRECOGWORDS2 variable is necessary only if the program requires a pointer.
The structure is used by: