pidgin 2.14.14dev
Image Store Signals

Signals:

See also
imgstore.h

image-deleting

char *(*image_deleting)(const PurpleStoredImage *img);
struct _PurpleStoredImage PurpleStoredImage
A set of utility functions that provide a reference-counted immutable wrapper around an image's data ...
Definition: imgstore.h:37
Description:
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.
Parameters
imgThe image about to be destroyed.
Note
It's not possible to purple_imgstore_ref() img to save it.