cmdstrm.idl 724 B

12345678910111213141516171819202122232425262728293031323334
  1. //-----------------------------------------------------------------------------
  2. // File: cmdstrm.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(0c733abf-2a1c-11ce-ade5-00aa0044773d)
  14. interface ICommandStream : IUnknown {
  15. [local]
  16. HRESULT GetCommandStream(
  17. [out] IID * piid,
  18. [in,out] GUID * pguidDialect,
  19. [out, iid_is(*piid)] IUnknown ** ppCommandStream
  20. );
  21. [local]
  22. HRESULT SetCommandStream(
  23. [in] REFIID riid,
  24. [in] REFGUID rguidDialect,
  25. [in, iid_is(riid)] IUnknown * pCommandStream
  26. );
  27. }