mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-09 14:52:28 -04:00
Fix compilation, retrocompatibility and enums
Workaround miss-behaviour on old Android phones Cleanup indentation a bit Consistent param naming Introduce default parameter values also for output paramethers
This commit is contained in:
parent
44c1f1580f
commit
ab80d9a374
8 changed files with 584 additions and 365 deletions
|
@ -121,15 +121,14 @@ public:
|
|||
|
||||
enum GxsRequestStatus : uint8_t
|
||||
{
|
||||
FAILED,
|
||||
PENDING,
|
||||
PARTIAL,
|
||||
COMPLETE,
|
||||
DONE, /// Once all data has been retrived
|
||||
CANCELLED
|
||||
FAILED = 0,
|
||||
PENDING = 1,
|
||||
PARTIAL = 2,
|
||||
COMPLETE = 3,
|
||||
DONE = 4, /// Once all data has been retrived
|
||||
CANCELLED = 5
|
||||
};
|
||||
|
||||
|
||||
RsTokenService() {}
|
||||
virtual ~RsTokenService() {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue