comparison src/log.h @ 10812:d087e928ffd1

[gaim-migrate @ 12465] " A variety of spacing normalization I've done as I've navigated the source making other changes. The specific changes should be uncontroversial. I'm submitting these to shrink the deltas between my local tree and the CVS source. If spacing changes are unwelcome as a general rule, let me know." --rlaager I said not to do this sort of patch often. also a spelling fix. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 11 Apr 2005 04:32:26 +0000
parents 62fc579810f4
children 5c5120837bab
comparison
equal deleted inserted replaced
10811:dc59482c8d37 10812:d087e928ffd1
59 char *name; /**< The logger's name */ 59 char *name; /**< The logger's name */
60 char *id; /**< an identifier to refer to this logger */ 60 char *id; /**< an identifier to refer to this logger */
61 61
62 /** This gets called when the log is first created. 62 /** This gets called when the log is first created.
63 I don't think this is actually needed. */ 63 I don't think this is actually needed. */
64 void(*create)(GaimLog *log); 64 void (*create)(GaimLog *log);
65 65
66 /** This is used to write to the log file */ 66 /** This is used to write to the log file */
67 void(*write)(GaimLog *log, 67 void (*write)(GaimLog *log,
68 GaimMessageFlags type, 68 GaimMessageFlags type,
69 const char *from, 69 const char *from,
70 time_t time, 70 time_t time,
71 const char *message); 71 const char *message);
72 72