rowinf.idl 521 B

1234567891011121314151617181920212223242526
  1. //-----------------------------------------------------------------------------
  2. // File: rowinf.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. REMOTED_INTERFACE(0c733ac1-2a1c-11ce-ade5-00aa0044773d)
  14. interface IRowInfo : IUnknown {
  15. [local]
  16. HRESULT GetParentRow(
  17. [in] REFIID riid,
  18. [out] IUnknown ** ppRow
  19. );
  20. }