INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "IEnumConnections 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_CONNECTIONS
inherit

EOLE_UNKNOWN
end
feature

next: EOLE_CONNECTDATA
-- Enumerates the next  CONNECTDATA structures

skip (c_connections: INTEGER)
-- Instructs the enumerator to skip the next CONNECTDATA structures

reset
-- Instructs the enumerator to position itself back
-- to the beginning of the list of CONNECTDATA structures

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

ole2_enum_connections_next (p: POINTER; ip_con_data: POINTER)

ole2_enum_connections_skip (p: POINTER; c_connections: INTEGER)

ole2_enum_connections_reset (p: POINTER)

ole2_enum_connections_clone (p: POINTER): POINTER
end -- class EOLE_ENUM_CONNECTIONS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES