Home COM GDI+ WebBrowser Data Access

IGetSourceRow Interface

 

IID_IGetSourceRow

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

 

 

The IGetSourceRow interface returns an interface on the row object within whose context a stream object was created.

 

Documentation: IGetSourceRow

 

 

Methods in VTable order

IUnknown Methods

Description

QueryInterface

Returns pointers to supported interfaces.

AddRef

Increments reference count.

Release

Decrements reference count.

IGetSourceRow Method

Description

GetSourceRow

Returns an interface pointer on the row object associated with the stream object.

 

QueryInterface

 

FUNCTION IGetSourceRow_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 IGetSourceRow_QueryInterface (pthis, riid, ppvObj) TO HRESULT
  FUNCTION = HRESULT
 

END FUNCTION

 

 

AddRef

 

FUNCTION IGetSourceRow_AddRef ( _

  BYVAL pthis AS DWORD PTR _

  ) AS DWORD
 

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

END FUNCTION

 

 

Release

 

FUNCTION IGetSourceRow_Release ( _

  BYVAL pthis AS DWORD PTR _

  ) AS DWORD
 

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

END FUNCTION

 

 

GetSourceRow

 

FUNCTION IGetSourceRow_GetSourceRow ( _
  BYVAL pthis AS DWORD PTR _

, BYREF riid AS GUID _

, BYREF ppRow AS DWORD _

  ) AS LONG


  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[3] USING IGetSourceRow_GetSourceRow (pthis, riid, ppRow) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

Page last updated on Wednesday, 15 February 2006 23:32:14 +0100