INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "IEnumUnknown support"
project: "Visual Eiffel Library"
revision: "$Revision: 1.2 $"
copyright: "Copyright (C) 1996-2005 Object Tools Group"
license: "http://visual-eiffel.com/license"
cluster: wine
class EOLE_ENUM_UNKNOWN
inherit

EOLE_UNKNOWN
end
feature

next: EOLE_UNKNOWN
-- Retrieves a specified number of items in the enumeration sequence.

skip (celt: INTEGER)
-- Skips over a specified number of items in
-- the enumeration sequence.

reset
-- Resets the enumeration sequence to the beginning.

clone_: EOLE_ENUM_UNKNOWN
-- Creates another enumerator that contains the same
-- enumeration state as the current one.
feature -- The following feature are simply thw wrappers
-- betweei Eiffel code and C implementation

ole2_enum_unknown_next (pthis: POINTER): POINTER

ole2_enum_unknown_skip (p: POINTER; celt: INTEGER)

ole2_enum_unknown_reset (p: POINTER)

ole2_enum_unknown_clone (p: POINTER): POINTER
end -- class EOLE_ENUM_UNKNOWN

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES