qrybas.idl 604 B

1234567891011121314151617181920212223242526272829
  1. //-----------------------------------------------------------------------------
  2. // File: qrybas.idl
  3. //
  4. // Copyright: Copyright (c) Microsoft Corporation
  5. //
  6. // Contents: OLE DB interface definition
  7. //
  8. // Comments:
  9. //
  10. //-----------------------------------------------------------------------------
  11. #include "idlmulti.h"
  12. //
  13. LOCAL_INTERFACE(0c733a51-2a1c-11ce-ade5-00aa0044773d)
  14. interface IQuery : ICommandTree {
  15. HRESULT AddPostProcessing(
  16. [in] DBCOMMANDTREE ** ppRoot,
  17. [in] BOOL fCopy
  18. );
  19. HRESULT GetCardinalityEstimate(
  20. [out] DBORDINAL * pulCardinality
  21. );
  22. }