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.

43 lines
1.5 KiB

4 years ago
  1. /*****************************************************************************
  2. * *
  3. * FCPRIV.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1990. *
  6. * All Rights reserved. *
  7. * *
  8. ******************************************************************************
  9. * *
  10. * Module Intent: Include file for sharing private typedefs and prototypes *
  11. * in the full-context manager. *
  12. * *
  13. ******************************************************************************
  14. * *
  15. * Testing Notes *
  16. * *
  17. ******************************************************************************
  18. * *
  19. * Current Owner: Robert Bunney *
  20. * *
  21. ******************************************************************************
  22. * *
  23. * Released by Development: (date) *
  24. * *
  25. *****************************************************************************/
  26. /*****************************************************************************
  27. * *
  28. * Typedefs *
  29. * *
  30. *****************************************************************************/
  31. typedef struct {
  32. VA vaPrevFC;
  33. VA vaNextFC;
  34. VA vaText;
  35. DWORD lcbUncompressed;
  36. BYTE bObjType;
  37. } EFCP, *QEFCP; // Expanded FCP;
  38. // This special value indicates a position outside of the topic:
  39. #define vaBEYOND_TOPIC ((DWORD) -2)