Replace empty string comparison with null character comparison
[pidgin-git.git] / doc / certificate-signals.dox
blobfd16674ff0de344fd983c02781d9c7dc75515bfd
1 /** @page certificate-signals Certificate Signals
3  @signals
4   @signal certificate-stored
5   @signal certificate-deleted
6  @endsignals
8  @see certificate.h
10  <hr>
12  @signaldef certificate-stored
13   @signalproto
14 void (*certificate_stored)(PurpleCertificatePool *pool, const gchar *id, gpointer data);
15   @endsignalproto
16   @signaldesc
17    Emitted when a pool stores a certificate. Connect to the pool instance.
18   @param pool    Pool the certificate has been stored into
19   @param id      Key the certificate was stored under
20  @endsignaldef
22  @signaldef certificate-deleted
23   @signalproto
24 void (*certificate_deleted)(PurpleCertificatePool *pool, const gchar *id, gpointer data);
25   @endsignalproto
26   @signaldesc
27    Emitted when a pool deletes a certificate. Connect to the pool instance.
28   @param pool    Pool the certificate was deleted from
29   @param id      Key that was deleted
30  @endsignaldef
32  */
33 // vim: syntax=c.doxygen tw=75 et