mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-17 13:30:36 -04:00
Improvements to the photoservice & underlying GS test service.
- added PublishTS and AuthorID to GropuMetaData. - added Mod & Set Flags to PhotoData. (mainly for the GUI). - added "isNew" parameter to sumbitPhoto/Album calls. - support modifications to Photos. - improved Photo Thumbnail handling. (still not right). - added LATEST msg search in GxsService. - added ATTRIB flags to rsphoto.h git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-new_cache_system@5238 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
7a22d4fe69
commit
8af268e8c8
5 changed files with 198 additions and 32 deletions
|
@ -64,6 +64,7 @@
|
|||
#define RSGXS_MSG_STATUS_MASK 0x000f
|
||||
#define RSGXS_MSG_STATUS_READ 0x0001
|
||||
#define RSGXS_MSG_STATUS_UNREAD_BY_USER 0x0002
|
||||
#define RSGXS_MSG_STATUS_PROCESSED 0x0004 // By the Service.
|
||||
|
||||
|
||||
|
||||
|
@ -94,12 +95,17 @@ class RsGroupMetaData
|
|||
mMsgCount = 0;
|
||||
mLastPost = 0;
|
||||
mGroupStatus = 0;
|
||||
|
||||
//mPublishTs = 0;
|
||||
}
|
||||
|
||||
std::string mGroupId;
|
||||
std::string mGroupName;
|
||||
uint32_t mGroupFlags;
|
||||
|
||||
time_t mPublishTs; // Mandatory.
|
||||
std::string mAuthorId; // Optional.
|
||||
|
||||
// BELOW HERE IS LOCAL DATA, THAT IS NOT FROM MSG.
|
||||
|
||||
uint32_t mSubscribeFlags;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue