aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llavatarconstants.h
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:49 -0500
committerJacek Antonelli2008-08-15 23:44:49 -0500
commitc659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd (patch)
tree49f225d319b111f30f113c4cf7728565afa52132 /linden/indra/llcommon/llavatarconstants.h
parentSecond Life viewer sources 1.13.2.15 (diff)
downloadmeta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.zip
meta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.tar.gz
meta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.tar.bz2
meta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.tar.xz
Second Life viewer sources 1.13.3.2
Diffstat (limited to 'linden/indra/llcommon/llavatarconstants.h')
-rw-r--r--linden/indra/llcommon/llavatarconstants.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/linden/indra/llcommon/llavatarconstants.h b/linden/indra/llcommon/llavatarconstants.h
index f56e9ab..3335949 100644
--- a/linden/indra/llcommon/llavatarconstants.h
+++ b/linden/indra/llcommon/llavatarconstants.h
@@ -39,5 +39,17 @@ const char* const BLACKLIST_PROFILE_WEB_URL = "http://secondlife.com/app/webdisa
39// Maximum number of avatar picks 39// Maximum number of avatar picks
40const S32 MAX_AVATAR_PICKS = 10; 40const S32 MAX_AVATAR_PICKS = 10;
41 41
42// For Flags in AvatarPropertiesReply
43const U32 AVATAR_ALLOW_PUBLISH = 0x1 << 0; // whether profile is externally visible or not
44const U32 AVATAR_MATURE_PUBLISH = 0x1 << 1; // profile is "mature"
45const U32 AVATAR_IDENTIFIED = 0x1 << 2; // whether avatar has provided payment info
46const U32 AVATAR_TRANSACTED = 0x1 << 3; // whether avatar has actively used payment info
47const U32 AVATAR_ONLINE = 0x1 << 4; // the online status of this avatar, if known.
48
49static const std::string VISIBILITY_DEFAULT("default");
50static const std::string VISIBILITY_HIDDEN("hidden");
51static const std::string VISIBILITY_VISIBLE("visible");
52static const std::string VISIBILITY_INVISIBLE("invisible");
53
42#endif 54#endif
43 55