blob: 0caf49245c36adba54b63fc8800bab69defee4a8 (
plain) (
tree)
|
|
using Gdk;
namespace Xmpp.Xep {
public interface PixbufStorage : Object {
public abstract void store(string id, uint8[] data);
public abstract bool has_image(string id);
public abstract Pixbuf? get_image(string id);
}
}
|