view doc/imgstore-signals.dox @ 21125:23d046a20aa0

Improved cyrus sasl support on win32: - Actually install the cyrus sasl libraries and plugins - Add INSTDIR/sasl2 to sasl plugin path at runtime so cyrus can find the mechanisms - Remove cyrus sasl bits during uninstallation (installation is still conditional on CYRUS_SASL=1 being defined)
author Stu Tomlinson <stu@nosnilmot.com>
date Sat, 03 Nov 2007 20:13:51 +0000
parents e0613cf8c493
children
line wrap: on
line source

/** @page imgstore-signals Image Store Signals

 @signals
  @signal image-deleting
 @endsignals

 @see imgstore.h

 <hr>

 @signaldef image-deleting
  @signalproto
char *(*image_deleting)(const PurpleStoredImage *img);
  @endsignalproto
  @signaldesc
   Emitted when a #PurpleStoredImage is about to be destroyed.  This allows
   for what amounts to weak references.  Code can hold onto a pointer to
   the PurpleStoredImage without actually "holding" a reference.  They can
   then use a signal handler to let them know when their img is about to
   be destroyed.
  @param img The image about to be destroyed.
  @note It's not possible to purple_imgstore_ref() img to save it.
 @endsignaldef

*/
// vim: syntax=c.doxygen tw=75 et