INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "IEnumConnectionPoints 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_CONN_POINTS
inherit

EOLE_UNKNOWN
end
feature

next: EOLE_CONNECTION_POINT
-- Enumerates the next IConnectionPoint pointers

skip (c_connections: INTEGER)
-- Instructs the enumerator to skip the next IConnectionPoint pointers

reset
-- Instructs the enumerator to position itself
-- back to the beginning of the list of IConnectionPoint pointers

clone_: EOLE_ENUM_CONN_POINTS
-- Creates another connection point enumerator
feature -- The following feature are simply thw wrappers
-- betweei Eiffel code and C implementation

ole2_enum_connection_points_next (pthis: POINTER): POINTER

ole2_enum_connection_points_skip (p: POINTER; c_connections: INTEGER)

ole2_enum_connection_points_reset (p: POINTER)

ole2_enum_connection_points_clone (p: POINTER): POINTER
end -- class EOLE_ENUM_CONN_POINTS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES