Home COM GDI+ WebBrowser Data Access

ISourcesRowset Interface

 

IID_ISourcesRowset

{0C733A1E-2A1C-11CE-ADE5-00AA0044773D}

 

 

ISourcesRowset returns a rowset of data source objects and enumerators visible from the current enumerator. For more information about enumerators, see "Enumerators" in Chapter 2: Data Source and Session Objects.

 

Documentation: ISourcesRowset

 

 

Methods in VTable order

IUnknown Methods

Description

QueryInterface

Returns pointers to supported interfaces.

AddRef

Increments reference count.

Release

Decrements reference count.

ISourcesRowset Method

Description

GetSourcesRowset

Returns a rowset of the data source objects and enumerators visible from the current enumerator.

 

QueryInterface

 

FUNCTION ISourcesRowset_QueryInterface ( _

  BYVAL pthis AS DWORD PTR _

, BYREF riid AS GUID _

, BYREF ppvObj AS DWORD _

  ) AS LONG


  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[0] USING ISourcesRowset_QueryInterface (pthis, riid, ppvObj) TO HRESULT
  FUNCTION = HRESULT
 

END FUNCTION

 

 

AddRef

 

FUNCTION ISourcesRowset_AddRef ( _

  BYVAL pthis AS DWORD PTR _

  ) AS DWORD
 

  LOCAL DWRESULT AS LONG
  CALL DWORD @@pthis[1] USING ISourcesRowset_AddRef (pthis) TO DWRESULT
  FUNCTION = DWRESULT
 

END FUNCTION

 

 

Release

 

FUNCTION ISourcesRowset_Release ( _

  BYVAL pthis AS DWORD PTR _

  ) AS DWORD
 

  LOCAL DWRESULT AS DWORD
  CALL DWORD @@pthis[2] USING ISourcesRowset_Release (pthis) TO DWRESULT
  FUNCTION = DWRESULT
 

END FUNCTION

 

 

GetSourcesRowset

 

FUNCTION ISourcesRowset_GetSourcesRowset ( _
  BYVAL pthis AS DWORD PTR _

, BYVAL pUnkOuter AS DWORD _

, BYREF riid AS GUID _

, BYVAL cPropertySets AS DWORD _

, BYVAL rgProperties AS DWORD _

, BYREF ppSourcesRowset AS DWORD _

  ) AS LONG


  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[3] USING ISourcesRowset_GetSourcesRowset (pthis, pUnkOuter, riid, cPropertySets, rgProperties, ppSourcesRowset) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

Page last updated on Wednesday, 15 February 2006 23:50:17 +0100