Package com.sun.jna.platform.win32.COM
Schnittstelle IEnumMoniker
- Alle Superschnittstellen:
IUnknown
- Alle bekannten Implementierungsklassen:
EnumMoniker
Enumerates the components of a moniker or the monikers in a table of monikers.
- Siehe auch:
-
Feldübersicht
FelderVon Schnittstelle geerbte Felder com.sun.jna.platform.win32.COM.IUnknown
IID_IUNKNOWN
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungClone
(PointerByReference ppenum) Creates a new enumerator that contains the same enumeration state as the current one.Next
(WinDef.ULONG celt, PointerByReference rgelt, WinDef.ULONGByReference pceltFetched) Retrieves the specified number of items in the enumeration sequence.Reset()
Resets the enumeration sequence to the beginning.Skip
(WinDef.ULONG celt) Skips over the specified number of items in the enumeration sequence.Von Schnittstelle geerbte Methoden com.sun.jna.platform.win32.COM.IUnknown
AddRef, QueryInterface, Release
-
Felddetails
-
IID
-
-
Methodendetails
-
Clone
Creates a new enumerator that contains the same enumeration state as the current one. This method makes it possible to record a particular point in the enumeration sequence and then return to that point at a later time. The caller must release this new enumerator separately from the first enumerator.HRESULT Clone( [out] IEnumMoniker **ppenum );
- Siehe auch:
-
Next
WinNT.HRESULT Next(WinDef.ULONG celt, PointerByReference rgelt, WinDef.ULONGByReference pceltFetched) Retrieves the specified number of items in the enumeration sequence. Note: The caller is responsible for calling Release through each pointer enumerated.HRESULT Next( [in] ULONG celt, [out] IMoniker **rgelt, [in, out] ULONG *pceltFetched );
- Siehe auch:
-
Reset
WinNT.HRESULT Reset()Resets the enumeration sequence to the beginning.HRESULT Reset();
- Siehe auch:
-
Skip
Skips over the specified number of items in the enumeration sequence.HRESULT Skip( [in] ULONG celt );
- Siehe auch:
-