Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
497 B

  1. #ifndef LSQUERYCONTEXT_DEFINED
  2. #define LSQUERYCONTEXT_DEFINED
  3. #include "lsdefs.h"
  4. #include "plsqsinf.h"
  5. #include "lscell.h"
  6. typedef struct lsquerycontext
  7. {
  8. PLSQSUBINFO plsqsubinfo; /* array of query results, allocated by client */
  9. DWORD cQueryMax; /* size of the array (maximum query depth) */
  10. DWORD cQueryLim; /* size of already filled part of the array */
  11. LSTEXTCELL lstextcell; /* text cell info and pointer to the text dnode */
  12. } LSQUERYCONTEXT;
  13. #endif