Windows NT 4.0 source code leak
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.

37 lines
1.1 KiB

4 years ago
  1. /*****************************************************************************
  2. * *
  3. * KEYWORD.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1990. *
  6. * All Rights reserved. *
  7. * *
  8. *****************************************************************************/
  9. /*****************************************************************************
  10. * *
  11. * Typedefs *
  12. * *
  13. *****************************************************************************/
  14. // Information associated with each keyword letter:
  15. typedef struct {
  16. short ch;
  17. CTable* ptbl; // table containing keyword information.
  18. } KWL;
  19. // Information about all the keywords:
  20. typedef struct {
  21. KT kt; // Btree key type
  22. int ckwlMac; // Number of different keyword letters
  23. int ikwlCur; // Index into rgkwl of currently open file
  24. KWL rgkwl[MAX_KEY_LETTERS]; // Array of information about each keyword letter
  25. CTable* ptbl;
  26. } KWI, * PKWI;
  27. typedef struct
  28. {
  29. PCSTR szKey;
  30. ADDR addr;
  31. } KWD, * PKWD;