windows-nt/Source/XPSP1/NT/windows/richedit/inci/lsqrycon.h

19 lines
479 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#ifndef LSQUERYCONTEXT_DEFINED
#define LSQUERYCONTEXT_DEFINED
#include "lsdefs.h"
#include "plsqsinf.h"
#include "lscell.h"
typedef struct lsquerycontext
{
PLSQSUBINFO plsqsubinfo; /* array of query results, allocated by client */
DWORD cQueryMax; /* size of the array (maximum query depth) */
DWORD cQueryLim; /* size of already filled part of the array */
LSTEXTCELL lstextcell; /* text cell info and pointer to the text dnode */
} LSQUERYCONTEXT;
#endif