X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=avahi-common%2Fwatch.h;h=80ed888e697e12bb8cc5acfa49739cb9f8031597;hb=451be30b300b390b46738af3fd24fc942ba3158f;hp=c779a58214f81f728c592e12cac11412be354943;hpb=b73aab83cbdaaac40c4bb80b82049dc4452b5f1c;p=catta diff --git a/avahi-common/watch.h b/avahi-common/watch.h index c779a58..80ed888 100644 --- a/avahi-common/watch.h +++ b/avahi-common/watch.h @@ -31,10 +31,10 @@ AVAHI_C_DECL_BEGIN -/** \struct AvahiWatch An I/O watch object */ +/** An I/O watch object */ typedef struct AvahiWatch AvahiWatch; -/** \struct AvahiTimeout A timeout watch object */ +/** A timeout watch object */ typedef struct AvahiTimeout AvahiTimeout; /** An event polling abstraction object */ @@ -42,10 +42,10 @@ typedef struct AvahiPoll AvahiPoll; /** Type of watch events */ typedef enum { - AVAHI_WATCH_IN = POLLIN, /** Input event */ - AVAHI_WATCH_OUT = POLLOUT, /** Output event */ - AVAHI_WATCH_ERR = POLLERR, /** Error event */ - AVAHI_WATCH_HUP = POLLHUP /** Hangup event */ + AVAHI_WATCH_IN = POLLIN, /**< Input event */ + AVAHI_WATCH_OUT = POLLOUT, /**< Output event */ + AVAHI_WATCH_ERR = POLLERR, /**< Error event */ + AVAHI_WATCH_HUP = POLLHUP /**< Hangup event */ } AvahiWatchEvent; /** Called whenever an I/O event happens on an I/O watch */