- indexing
- title: "IConnectionPoint 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_CONNECTION_POINT
- inherit
-
EOLE_UNKNOWN
- end
- feature -- Returns the IID of the outgoing interface managed
-- by this connection point.
--
-
get_connection_interface: STRING
-
get_connection_point_container: EOLE_CONNPT_CONTAINER
-
advise (i_unknown: EOLE_UNKNOWN): INTEGER
-
unadvise (cookie: INTEGER)
-
enum_connections: EOLE_ENUM_CONNECTIONS
- feature -- The following feature are simply thw wrappers
-- betweei Eiffel code and C implementation
-
ole2_connection_point_get_connection_interface (p: POINTER): STRING
-
ole2_connection_point_get_connection_point_container (p: POINTER): POINTER
-
ole2_connection_point_advise (p: POINTER; i_unknown: POINTER): INTEGER
-
ole2_connection_point_unadvise (p: POINTER; cookie: INTEGER)
-
ole2_connection_point_enum_connections (p: POINTER): POINTER
end -- class EOLE_CONNECTION_POINT