Home COM GDI+ WebBrowser Data Access

IRowsetView Interface

 

IID_IRowsetView

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

 

 

IRowsetView enables the consumer to create or apply a view to an existing rowset.

 

Documentation: IRowsetView

 

 

Methods in VTable order

IUnknown Methods

Description

QueryInterface

Returns pointers to supported interfaces.

AddRef

Increments reference count.

Release

Decrements reference count.

IRowsetView Methods

Description

CreateView

Creates a view object.

GetView

Returns a view object reflecting the conditions applied to the specified chapter.

 

QueryInterface

 

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

END FUNCTION

 

 

AddRef

 

FUNCTION IRowsetView_AddRef ( _

  BYVAL pthis AS DWORD PTR _

  ) AS DWORD
 

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

END FUNCTION

 

 

Release

 

FUNCTION IRowsetView_Release ( _

  BYVAL pthis AS DWORD PTR _

  ) AS DWORD
 

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

END FUNCTION

 

 

CreateView

 

FUNCTION IRowsetView_CreateView ( _
  BYVAL pthis AS DWORD PTR _

, BYVAL pUnkOuter AS DWORD _

, BYREF riid AS GUID _

, BYREF ppView AS DWORD _

  ) AS LONG


  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[3] USING IRowsetView_CreateView (pthis, pUnkOuter, riid, ppView) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

GetView

 

FUNCTION IRowsetView_GetView ( _
  BYVAL pthis AS DWORD PTR _

, BYVAL hChapter AS DWORD _

, BYREF riid AS GUID _

, BYREF phChapterSource AS DWORD _

, BYREF ppView AS DWORD _

  ) AS LONG


  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[4] USING IRowsetView_GetView (pthis, hChapter, riid, phChapterSource, ppView) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

Page last updated on Wednesday, 15 February 2006 23:48:26 +0100