Source code of Windows XP (NT5)
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.

21 lines
501 B

  1. // =========================================================================
  2. // Copyright (C) 1997, Microsoft Corporation. All Rights Reserved.
  3. // =========================================================================
  4. typedef struct ResultList
  5. {
  6. char lrgsz [400];
  7. char iword [400];
  8. int vbuf [400];
  9. UINT max;
  10. UINT num;
  11. char *next;
  12. }RLIST;
  13. typedef struct StemmerInfo
  14. {
  15. UINT Option;
  16. RLIST rList;
  17. BOOL bMdr;
  18. } STMI;