From 44015ffcb1ab2074a1050e4cbbd47951644523c6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Milo=C5=A1=20Mula=C4=8D?= Date: Fri, 25 Feb 2005 14:00:50 +0000 Subject: [PATCH] added some more comments --- org.glite.lb.client-interface/interface/notification.h | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/org.glite.lb.client-interface/interface/notification.h b/org.glite.lb.client-interface/interface/notification.h index 2729cb8..da76527 100644 --- a/org.glite.lb.client-interface/interface/notification.h +++ b/org.glite.lb.client-interface/interface/notification.h @@ -51,9 +51,10 @@ int edg_wll_NotifNew( /** Change the receiving local address. * Report the new address to the server. * - * \param fd - * \param address_override - * \param valid all same as for \ref edg_wll_NotifNew + * \param id notification ID you are binding to + * \param fd same as for \ref edg_wll_NotifNew + * \param address_override same as for \ref edg_wll_NotifNew + * \param valid same as for \ref edg_wll_NotifNew */ int edg_wll_NotifBind( @@ -65,9 +66,13 @@ int edg_wll_NotifBind( ); typedef enum _edg_wll_NotifChangeOp { + /** No operation, equal to not defined */ EDG_WLL_NOTIF_NOOP = 0, + /** Replace notification registration with new one */ EDG_WLL_NOTIF_REPLACE, + /** Add new condition when to be notifed */ EDG_WLL_NOTIF_ADD, + /** Remove condition on notification */ EDG_WLL_NOTIF_REMOVE /* if adding new attribute, add conversion string to common/xml_conversions.c too !! */ } edg_wll_NotifChangeOp; -- 1.8.2.3