Home COM GDI+ WebBrowser Data Access

IEnumTravelLogEntry  Interface

 

IID_IEnumTravelLogEntry

{7EBFDD85-AD18-11d3-A4C5-00C04F72D6B8}

 

 

This interface provides methods necessary to perform a travel log enumeration.
 

 

Methods in VTable order

IUnknown Methods

Description

QueryInterface

Returns pointers to supported interfaces.

AddRef

Increments reference count.

Release

Decrements reference count.

IEnumTravelLogEntry Methods

Description

Next

Retrieves the next items in the enumeration sequence.

Skip

Skips over the next specified number of elements.

Reset

Resets the enumeration sequence.

Clone

Creates a copy of the current state of enumeration.

 

Next

 

FUNCTION IEnumTravelLogEntry_Next ( _
  BYVAL pthis AS DWORD PTR _
, BYVAL cElt AS DWORD _
, BYVAL rgElt AS DWORD _
, BYREF pcEltFetched AS DWORD _
  ) AS LONG

  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[3] USING IEnumTravelLogEntry_Next (pthis, cElt, rgElt, pcEltFetched) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

Skip

 

FUNCTION IEnumTravelLogEntry_Skip ( _
  BYVAL pthis AS DWORD PTR _
, BYVAL cElt AS DWORD _
  ) AS LONG

  LOCAL HRESULT AS LONG
  CALL DWORD @@pthis[4] USING IEnumTravelLogEntry_Skip (pthis, cElt) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

Reset

 

FUNCTION IEnumTravelLogEntry_Reset ( _
  BYVAL pthis AS DWORD PTR _
  ) AS LONG

  LOCAL HRESULT AS LONG

  CALL DWORD @@pthis[5] USING IEnumTravelLogEntry_Reset (pthis) TO HRESULT
  FUNCTION = HRESULT

END FUNCTION

 

 

Clone

 

FUNCTION IEnumTravelLogEntry_Clone ( _
  BYVAL pthis AS DWORD PTR _
, BYREF ppenum AS DWORD _
  ) AS LONG

  LOCAL HRESULT AS LONG

  CALL DWORD @@pthis[6] USING IEnumTravelLogEntry_Clone (pthis, ppenum) TO HRESULT

  FUNCTION = HRESULT

END FUNCTION

 

 

Page last updated on Monday, 03 April 2006 19:52:41 +0200