added group icon support

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2904 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2010-05-14 13:00:07 +00:00
parent 47de2af50c
commit 27895d1781
10 changed files with 124 additions and 58 deletions

View file

@ -56,7 +56,8 @@ virtual bool blogsChanged(std::list<std::string> &blogIds);
/**
* creates a new blog
*/
virtual std::string createBlog(std::wstring blogName, std::wstring blogDesc, uint32_t blogFlags);
virtual std::string createBlog(std::wstring blogName, std::wstring blogDesc, uint32_t blogFlags,
unsigned char* pngImageData, uint32_t imageSize);
/**
* @param cId the id for the blog
@ -98,22 +99,7 @@ virtual bool BlogMessageReply(BlogMsgInfo &info);
*/
virtual bool isReply(BlogMsgInfo& info);
/**
* Deletes a blog by group id
*
*/
virtual bool deleteBlog(std::string cId);
/**
* Delete a blog message
* @param cId the group id the blog message belongs to
* @param mId the message id within the group
*/
virtual bool deleteBlogMsg(std::string cId, std::string mId);
virtual bool isBlogDeleted(std::string cId);
virtual bool isBlogMsgDeleted(std::string cId, std::string mId);
/***************************************************************************************/
/****************** Event Feedback (Overloaded form p3distrib) *************************/
/***************************************************************************************/