comparison src/log.h @ 9000:b540c735a6ad

[gaim-migrate @ 9775] " There were a bunch of warnings while running make docs, this cleans that up and adds documentation for gtkblist signals, gtkconv signals, and gtkimhtml signals. This patch is a tarball of the patch itself and the three new files for the signal documentation." --Gary Kramlich committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Fri, 21 May 2004 19:09:38 +0000
parents de87e510ff9a
children db62420a53a2
comparison
equal deleted inserted replaced
8999:8f838ae3e710 9000:b540c735a6ad
53 * A log logger. 53 * A log logger.
54 * 54 *
55 * This struct gets filled out and is included in the GaimLog. It contains everything 55 * This struct gets filled out and is included in the GaimLog. It contains everything
56 * needed to write and read from logs. 56 * needed to write and read from logs.
57 */ 57 */
58 /*@{*/
58 struct _GaimLogLogger { 59 struct _GaimLogLogger {
59 char *name; /**< The logger's name */ 60 char *name; /**< The logger's name */
60 char *id; /**< an identifier to refer to this logger */ 61 char *id; /**< an identifier to refer to this logger */
61 62
62 /** This gets called when the log is first created. 63 /** This gets called when the log is first created.
189 int gaim_log_get_size(GaimLog *log); 190 int gaim_log_get_size(GaimLog *log);
190 191
191 /** 192 /**
192 * Returns the size, in bytes, of all available logs in this conversation 193 * Returns the size, in bytes, of all available logs in this conversation
193 * 194 *
195 * @param type The type of the log
194 * @param name The name of the log 196 * @param name The name of the log
195 * @param account The account 197 * @param account The account
196 * @return The size in bytes 198 * @return The size in bytes
197 */ 199 */
198 int gaim_log_get_total_size(GaimLogType type, const char *name, GaimAccount *account); 200 int gaim_log_get_total_size(GaimLogType type, const char *name, GaimAccount *account);
282 #ifdef __cplusplus 284 #ifdef __cplusplus
283 } 285 }
284 #endif 286 #endif
285 287
286 #endif /* _GAIM_LOG_H_ */ 288 #endif /* _GAIM_LOG_H_ */
287