From bf2fb87d4d97f184ae4cec7baf694254c068b44e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 15 Jun 2011 21:57:47 +0000 Subject: [PATCH] @since 1.1 SVN revision: 60366 --- legacy/ecore/src/lib/ecore_con/Ecore_Con.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/src/lib/ecore_con/Ecore_Con.h b/legacy/ecore/src/lib/ecore_con/Ecore_Con.h index 25a945c39f..f5e558fd89 100644 --- a/legacy/ecore/src/lib/ecore_con/Ecore_Con.h +++ b/legacy/ecore/src/lib/ecore_con/Ecore_Con.h @@ -148,6 +148,7 @@ typedef struct _Ecore_Con_Event_Client_Add Ecore_Con_Event_Client_Add; /** * @typedef Ecore_Con_Event_Client_Upgrade * Used as the @p data param for the corresponding event + * @since 1.1 */ typedef struct _Ecore_Con_Event_Client_Upgrade Ecore_Con_Event_Client_Upgrade; @@ -172,6 +173,7 @@ typedef struct _Ecore_Con_Event_Server_Add Ecore_Con_Event_Server_Add; /** * @typedef Ecore_Con_Event_Server_Upgrade * Used as the @p data param for the corresponding event + * @since 1.1 */ typedef struct _Ecore_Con_Event_Server_Upgrade Ecore_Con_Event_Server_Upgrade; @@ -229,6 +231,7 @@ struct _Ecore_Con_Event_Client_Add /** * @struct _Ecore_Con_Event_Client_Upgrade * Used as the @p data param for the @ref ECORE_CON_EVENT_CLIENT_UPGRADE event + * @since 1.1 */ struct _Ecore_Con_Event_Client_Upgrade { @@ -266,6 +269,7 @@ struct _Ecore_Con_Event_Server_Add /** * @struct _Ecore_Con_Event_Server_Upgrade * Used as the @p data param for the @ref ECORE_CON_EVENT_SERVER_UPGRADE event + * @since 1.1 */ struct _Ecore_Con_Event_Server_Upgrade { @@ -359,7 +363,9 @@ EAPI extern int ECORE_CON_EVENT_CLIENT_ADD; EAPI extern int ECORE_CON_EVENT_CLIENT_DEL; /** A client experienced an error */ EAPI extern int ECORE_CON_EVENT_CLIENT_ERROR; -/** A client connection has been upgraded to SSL */ +/** A client connection has been upgraded to SSL + * @since 1.1 + */ EAPI extern int ECORE_CON_EVENT_CLIENT_UPGRADE; /** A server was created */ EAPI extern int ECORE_CON_EVENT_SERVER_ADD; @@ -367,7 +373,9 @@ EAPI extern int ECORE_CON_EVENT_SERVER_ADD; EAPI extern int ECORE_CON_EVENT_SERVER_DEL; /** A server experienced an error */ EAPI extern int ECORE_CON_EVENT_SERVER_ERROR; -/** A server connection has been upgraded to SSL */ +/** A server connection has been upgraded to SSL + * @since 1.1 + */ EAPI extern int ECORE_CON_EVENT_SERVER_UPGRADE; /** A client connected to the server has sent data */ EAPI extern int ECORE_CON_EVENT_CLIENT_DATA;