comparison libpurple/prpl.h @ 23371:3f92fd48d19a

document PurpleAttentionType slightly
author Will Thompson <will.thompson@collabora.co.uk>
date Sun, 15 Jun 2008 12:54:23 +0000
parents d3fb9d9b57e2
children 49850f7ca393 3da0957e7821
comparison
equal deleted inserted replaced
23370:855ae4ef2da3 23371:3f92fd48d19a
29 29
30 #ifndef _PURPLE_PRPL_H_ 30 #ifndef _PURPLE_PRPL_H_
31 #define _PURPLE_PRPL_H_ 31 #define _PURPLE_PRPL_H_
32 32
33 typedef struct _PurplePluginProtocolInfo PurplePluginProtocolInfo; 33 typedef struct _PurplePluginProtocolInfo PurplePluginProtocolInfo;
34 /** @copydoc _PurpleAttentionType */
34 typedef struct _PurpleAttentionType PurpleAttentionType; 35 typedef struct _PurpleAttentionType PurpleAttentionType;
35 36
36 /**************************************************************************/ 37 /**************************************************************************/
37 /** @name Basic Protocol Information */ 38 /** @name Basic Protocol Information */
38 /**************************************************************************/ 39 /**************************************************************************/
97 int min; 98 int min;
98 int max; 99 int max;
99 gboolean secret; 100 gboolean secret;
100 }; 101 };
101 102
103 /** Represents "nudges" and "buzzes" that you may send to a buddy to attract
104 * their attention (or vice-versa).
105 */
102 struct _PurpleAttentionType 106 struct _PurpleAttentionType
103 { 107 {
104 const char *name; /**< Shown in GUI elements */ 108 const char *name; /**< Shown in GUI elements */
105 const char *incoming_description; /**< Shown when sent */ 109 const char *incoming_description; /**< Shown when sent */
106 const char *outgoing_description; /**< Shown when receied */ 110 const char *outgoing_description; /**< Shown when receied */