added const 'idle' status

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2791 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2010-04-27 11:56:06 +00:00
parent f1dab2b094
commit d751ecedf7

View File

@ -35,9 +35,11 @@ extern RsStatus *rsStatus;
#include <inttypes.h> #include <inttypes.h>
#include <list> #include <list>
const uint32_t RS_STATUS_AWAY = 0x0001; const uint32_t RS_STATUS_AWAY = 0x0001;
const uint32_t RS_STATUS_BUSY = 0x0002; const uint32_t RS_STATUS_BUSY = 0x0002;
const uint32_t RS_STATUS_ONLINE = 0x0003; const uint32_t RS_STATUS_ONLINE = 0x0003;
const uint32_t RS_STATUS_INACTIVE = 0x0004;
//! data object for peer status information //! data object for peer status information
/*! /*!