mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
changed NO_DATA enum to NO_DATA_YET. Seems that this is an existing define on windows
This commit is contained in:
parent
59df44535a
commit
8e52f07621
@ -128,13 +128,13 @@ public:
|
|||||||
uint32_t subscription_flags ; // combination of GXS_EXTERNAL_CIRCLE_FLAGS_IN_ADMIN_LIST and GXS_EXTERNAL_CIRCLE_FLAGS_SUBSCRIBED
|
uint32_t subscription_flags ; // combination of GXS_EXTERNAL_CIRCLE_FLAGS_IN_ADMIN_LIST and GXS_EXTERNAL_CIRCLE_FLAGS_SUBSCRIBED
|
||||||
};
|
};
|
||||||
|
|
||||||
enum CircleEntryCacheStatus: uint8_t {
|
typedef enum CircleEntryCacheStatus: uint8_t {
|
||||||
UNKNOWN = 0x00, // Used to detect uninitialized memory
|
UNKNOWN = 0x00, // Used to detect uninitialized memory
|
||||||
NO_DATA = 0x01, // Used in the constuctor
|
NO_DATA_YET = 0x01, // Used in the constuctor
|
||||||
LOADING = 0x02, // When the token request to load cache has been sent and no data is present
|
LOADING = 0x02, // When the token request to load cache has been sent and no data is present
|
||||||
UPDATING = 0x03, // Starting from this level the cache entry can be used
|
UPDATING = 0x03, // Starting from this level the cache entry can be used
|
||||||
CHECKING_MEMBERSHIP = 0x04, // Means we're actually looking into msgs to update membership status
|
CHECKING_MEMBERSHIP = 0x04, // Means we're actually looking into msgs to update membership status
|
||||||
UP_TO_DATE = 0x05, // Everything should be loaded here.
|
UP_TO_DATE = 0x05 // Everything should be loaded here.
|
||||||
};
|
};
|
||||||
|
|
||||||
class RsGxsCircleCache
|
class RsGxsCircleCache
|
||||||
|
Loading…
Reference in New Issue
Block a user