diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2008-02-24 18:28:15 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2008-02-24 18:28:15 +0000 |
commit | 0cf3d858ada8d3838c7cfe54cd24888203cf83fb (patch) | |
tree | 25e67595dd694b18d72c2f411d960cfe90e5ff35 /Plugins/emoticons/commons.h | |
parent | d63b08f1dede1ecc3a835bf8d1bfc35837c92da7 (diff) |
Finished support for custom smileys
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@55 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/emoticons/commons.h')
-rw-r--r-- | Plugins/emoticons/commons.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Plugins/emoticons/commons.h b/Plugins/emoticons/commons.h index 990c99e..c132f89 100644 --- a/Plugins/emoticons/commons.h +++ b/Plugins/emoticons/commons.h @@ -139,6 +139,16 @@ struct CustomEmoticon CustomEmoticon() : text(0), path(0), downloading(FALSE) {}
};
+struct DowloadingEmoticon
+{
+ char *path;
+ void *img;
+
+ DowloadingEmoticon() : path(0), img(0) {}
+ ~DowloadingEmoticon();
+ void Downloaded();
+};
+
struct Module
{
char *name;
|