Mercurial > pidgin
annotate doc/log-signals.dox @ 17870:5f4dcaf1f886
User Nickname now sets the buddy's server_alias, which means that no UI changes are required for supporting this XEP. Also forgot to add usernick.[hc].
author | Andreas Monitzer <pidgin@monitzer.com> |
---|---|
date | Mon, 18 Jun 2007 15:05:39 +0000 |
parents | 8cf53d7a0887 |
children | e0613cf8c493 |
rev | line source |
---|---|
12737 | 1 /** @page log-signals Log Signals |
2 | |
3 @signals | |
4 @signal log-timestamp | |
5 @endsignals | |
6 | |
7 <hr> | |
8 | |
9 @signaldef log-timestamp | |
10 @signalproto | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
14617
diff
changeset
|
11 char *(*log_timestamp)(PurpleLog *log, time_t when); |
12737 | 12 @endsignalproto |
13 @signaldesc | |
14 Emitted to allow plugins to customize the timestamp on a message | |
15 being logged. | |
16 @param log The log the message belongs to. | |
13987
f94309c7c480
[gaim-migrate @ 16559]
Richard Laager <rlaager@wiktel.com>
parents:
12737
diff
changeset
|
17 @param when The time to be converted to a string. |
12737 | 18 @return A textual representation of the time, or @c NULL to use a |
19 default format. | |
16183
8cf53d7a0887
Update the Doxygen signals documentation to match the new struct names.
Richard Laager <rlaager@wiktel.com>
parents:
14617
diff
changeset
|
20 @note Plugins must be careful of logs with a type of PURPLE_LOG_SYSTEM. |
12737 | 21 @endsignaldef |
22 | |
23 */ | |
24 // vim: syntax=c tw=75 et |