diff options
author | McCabe Maxsted | 2009-10-16 16:39:44 -0700 |
---|---|---|
committer | McCabe Maxsted | 2009-10-16 16:39:44 -0700 |
commit | ce82adec2a0124fe27f363653d2652b0f5c61f04 (patch) | |
tree | 35b3877b1d1fc92329a44a9a17d183b74b92890b /linden/indra/newview/rlvdefines.h | |
parent | Applied patch for VWR-6787 by Alissa Sabre - 'none' text in group window not ... (diff) | |
download | meta-impy-ce82adec2a0124fe27f363653d2652b0f5c61f04.zip meta-impy-ce82adec2a0124fe27f363653d2652b0f5c61f04.tar.gz meta-impy-ce82adec2a0124fe27f363653d2652b0f5c61f04.tar.bz2 meta-impy-ce82adec2a0124fe27f363653d2652b0f5c61f04.tar.xz |
Applied RLVa-1.0.4e_20091010_SL-1.22.11-diff.patch
Diffstat (limited to 'linden/indra/newview/rlvdefines.h')
-rw-r--r-- | linden/indra/newview/rlvdefines.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/linden/indra/newview/rlvdefines.h b/linden/indra/newview/rlvdefines.h index 4e6a4d4..d1e0b75 100644 --- a/linden/indra/newview/rlvdefines.h +++ b/linden/indra/newview/rlvdefines.h | |||
@@ -41,13 +41,14 @@ | |||
41 | 41 | ||
42 | // Version of the specifcation we support | 42 | // Version of the specifcation we support |
43 | const S32 RLV_VERSION_MAJOR = 1; | 43 | const S32 RLV_VERSION_MAJOR = 1; |
44 | const S32 RLV_VERSION_MINOR = 20; | 44 | const S32 RLV_VERSION_MINOR = 21; |
45 | const S32 RLV_VERSION_PATCH = 2; | 45 | const S32 RLV_VERSION_PATCH = 0; |
46 | const S32 RLV_VERSION_BUILD = 0; | ||
46 | 47 | ||
47 | // Implementation version | 48 | // Implementation version |
48 | const S32 RLVa_VERSION_MAJOR = 1; | 49 | const S32 RLVa_VERSION_MAJOR = 1; |
49 | const S32 RLVa_VERSION_MINOR = 0; | 50 | const S32 RLVa_VERSION_MINOR = 0; |
50 | const S32 RLVa_VERSION_PATCH = 3; | 51 | const S32 RLVa_VERSION_PATCH = 4; |
51 | const S32 RLVa_VERSION_BUILD = 4; | 52 | const S32 RLVa_VERSION_BUILD = 4; |
52 | 53 | ||
53 | // The official viewer version we're patching against | 54 | // The official viewer version we're patching against |
@@ -136,6 +137,7 @@ enum ERlvBehaviour { | |||
136 | RLV_BHVR_SHOWLOC, // "showloc" | 137 | RLV_BHVR_SHOWLOC, // "showloc" |
137 | RLV_BHVR_TPTO, // "tpto" | 138 | RLV_BHVR_TPTO, // "tpto" |
138 | RLV_BHVR_ACCEPTTP, // "accepttp" | 139 | RLV_BHVR_ACCEPTTP, // "accepttp" |
140 | RLV_BHVR_ACCEPTPERMISSION, // "acceptpermission" | ||
139 | RLV_BHVR_SHOWNAMES, // "shownames" | 141 | RLV_BHVR_SHOWNAMES, // "shownames" |
140 | RLV_BHVR_FLY, // "fly" | 142 | RLV_BHVR_FLY, // "fly" |
141 | RLV_BHVR_GETSITID, // "getsitid" | 143 | RLV_BHVR_GETSITID, // "getsitid" |
@@ -147,6 +149,9 @@ enum ERlvBehaviour { | |||
147 | RLV_BHVR_SHOWHOVERTEXTHUD, // "showhovertexthud" | 149 | RLV_BHVR_SHOWHOVERTEXTHUD, // "showhovertexthud" |
148 | RLV_BHVR_SHOWHOVERTEXT, // "showhovertext" | 150 | RLV_BHVR_SHOWHOVERTEXT, // "showhovertext" |
149 | RLV_BHVR_NOTIFY, // "notify" | 151 | RLV_BHVR_NOTIFY, // "notify" |
152 | RLV_BHVR_DEFAULTWEAR, // "defaultwear" | ||
153 | RLV_BHVR_VERSIONNUM, // "versionnum" | ||
154 | RLV_BHVR_PERMISSIVE, // "permissive" | ||
150 | 155 | ||
151 | RLV_BHVR_COUNT, | 156 | RLV_BHVR_COUNT, |
152 | RLV_BHVR_UNKNOWN | 157 | RLV_BHVR_UNKNOWN |
@@ -174,6 +179,12 @@ enum ERlvCmdRet { | |||
174 | RLV_RET_UNKNOWN // Command unkown | 179 | RLV_RET_UNKNOWN // Command unkown |
175 | }; | 180 | }; |
176 | 181 | ||
182 | enum ERlvExceptionCheck { | ||
183 | RLV_CHECK_PERMISSIVE, // Exception can be set by any object | ||
184 | RLV_CHECK_STRICT, // Exception must be set by all objects holding the restriction | ||
185 | RLV_CHECK_DEFAULT // Permissive or strict will be determined by currently enforced restrictions | ||
186 | }; | ||
187 | |||
177 | // ============================================================================ | 188 | // ============================================================================ |
178 | // Settings | 189 | // Settings |
179 | 190 | ||