comparison libpurple/util.h @ 28493:63cb8c4f3c66

Fix a bunch of doxygen warnings.
author Paul Aurich <paul@darkrain42.org>
date Sun, 30 Aug 2009 04:00:51 +0000
parents c9c038529f38
children 6e22a8c188c5 a8e19b69e6b4 ecd2136ff818
comparison
equal deleted inserted replaced
28492:2f66ad9c32a9 28493:63cb8c4f3c66
29 #ifndef _PURPLE_UTIL_H_ 29 #ifndef _PURPLE_UTIL_H_
30 #define _PURPLE_UTIL_H_ 30 #define _PURPLE_UTIL_H_
31 31
32 #include <stdio.h> 32 #include <stdio.h>
33 33
34 /**
35 * An opaque structure representing a URL request. Can be used to cancel
36 * the request.
37 */
34 typedef struct _PurpleUtilFetchUrlData PurpleUtilFetchUrlData; 38 typedef struct _PurpleUtilFetchUrlData PurpleUtilFetchUrlData;
39 /** @copydoc _PurpleMenuAction */
35 typedef struct _PurpleMenuAction PurpleMenuAction; 40 typedef struct _PurpleMenuAction PurpleMenuAction;
41 /** @copydoc _PurpleKeyValuePair */
36 typedef struct _PurpleKeyValuePair PurpleKeyValuePair; 42 typedef struct _PurpleKeyValuePair PurpleKeyValuePair;
37 43
38 #include "account.h" 44 #include "account.h"
39 #include "xmlnode.h" 45 #include "xmlnode.h"
40 #include "notify.h" 46 #include "notify.h"
105 * @param title The title of the song, @c NULL to unset the value. 111 * @param title The title of the song, @c NULL to unset the value.
106 * @param artist The artist of the song, can be @c NULL. 112 * @param artist The artist of the song, can be @c NULL.
107 * @param album The album of the song, can be @c NULL. 113 * @param album The album of the song, can be @c NULL.
108 * @param unused Currently unused, must be @c NULL. 114 * @param unused Currently unused, must be @c NULL.
109 * 115 *
110 * @return The formatted string. The caller must #g_free the returned string. 116 * @return The formatted string. The caller must g_free the returned string.
111 * @since 2.4.0 117 * @since 2.4.0
112 */ 118 */
113 char * purple_util_format_song_info(const char *title, const char *artist, 119 char * purple_util_format_song_info(const char *title, const char *artist,
114 const char *album, gpointer unused); 120 const char *album, gpointer unused);
115 121