rstwpr.idl 728 B

1234567891011121314151617181920212223242526272829303132
  1. //-----------------------------------------------------------------------------
  2. // File: rstwpr.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(0c733a6e-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowsetWithParameters : IUnknown {
  15. HRESULT GetParameterInfo(
  16. [in, out] DB_UPARAMS * pcParams,
  17. [out, size_is(,*pcParams)] DBPARAMINFO ** prgParamInfo,
  18. [out] OLECHAR ** ppNamesBuffer
  19. );
  20. HRESULT Requery(
  21. [in] DBPARAMS * pParams,
  22. [out] ULONG * pulErrorParam,
  23. [out] HCHAPTER * phReserved
  24. );
  25. }