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.

27 lines
681 B

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Copyright (C) 1991, Microsoft Corporation.
  4. //
  5. // File: Parse.hxx
  6. //
  7. // Contents: Converts restrictions into expressions
  8. //
  9. // History: 09-Sep-91 KyleP Created
  10. //
  11. //----------------------------------------------------------------------------
  12. #pragma once
  13. #include <timlimit.hxx>
  14. class CRestriction;
  15. class CNodeRestriction;
  16. class CXpr;
  17. CXpr * Parse( CRestriction const * prst, CTimeLimit& timeLimit );
  18. void MoveFullyIndexable( CNodeRestriction & pnrSource,
  19. CNodeRestriction & pnrFullyResolvable );
  20. BOOL IsFullyIndexable( CRestriction * pRst );