diff options
| author | Monroe Williams <monroe@lindenlab.com> | 2009-10-01 02:35:53 +0000 | 
|---|---|---|
| committer | Monroe Williams <monroe@lindenlab.com> | 2009-10-01 02:35:53 +0000 | 
| commit | cf9239cabcf7999a2d2393bd4bdb6fc08e27c09c (patch) | |
| tree | b366355f955b7bf55197ef6caa105881da88df32 /indra/llcommon | |
| parent | 8135ddac021d3ea1aba2100f862bdb58eff33d07 (diff) | |
svn merge -r 134922:134973 svn+ssh://svn.lindenlab.com/svn/linden/branches/media-on-a-prim/moap-7
Merging branches/media-on-a-prim/moap-7 down to viewer-2.0.
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/lllslconstants.h | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/indra/llcommon/lllslconstants.h b/indra/llcommon/lllslconstants.h index a626e3f085..78f4435ed7 100644 --- a/indra/llcommon/lllslconstants.h +++ b/indra/llcommon/lllslconstants.h @@ -202,5 +202,18 @@ const U32	CHANGED_OWNER = 0x80;  const U32	CHANGED_REGION = 0x100;  const U32	CHANGED_TELEPORT = 0x200;  const U32	CHANGED_REGION_START = 0x400; +const U32   CHANGED_MEDIA = 0x800; + +// Possible error results +const U32 LSL_STATUS_OK                 = 0; +const U32 LSL_STATUS_MALFORMED_PARAMS   = 1000; +const U32 LSL_STATUS_TYPE_MISMATCH      = 1001; +const U32 LSL_STATUS_BOUNDS_ERROR       = 1002; +const U32 LSL_STATUS_NOT_FOUND          = 1003; +const U32 LSL_STATUS_NOT_SUPPORTED      = 1004; +const U32 LSL_STATUS_INTERNAL_ERROR     = 1999; + +// Start per-function errors below, starting at 2000: +const U32 LSL_STATUS_WHITELIST_FAILED   = 2001;  #endif | 
