diff options
author | James Cook <james@lindenlab.com> | 2009-11-28 20:56:15 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-11-28 20:56:15 -0800 |
commit | 895d528524bd340285fa04e355e49d5ab76b3787 (patch) | |
tree | 4d34e3442595db5efa329703515c832f787ed5d9 /indra/llcommon/indra_constants.h | |
parent | 8ff96a3515daa5c05d1c519f920c12b7aa78c4da (diff) |
Fix build - exported globals must have LL_COMMON_API tag
Diffstat (limited to 'indra/llcommon/indra_constants.h')
-rw-r--r-- | indra/llcommon/indra_constants.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/indra/llcommon/indra_constants.h b/indra/llcommon/indra_constants.h index 5ce5fc4673..064841a95a 100644 --- a/indra/llcommon/indra_constants.h +++ b/indra/llcommon/indra_constants.h @@ -267,14 +267,15 @@ const U8 GOD_LIKE = 1; const U8 GOD_NOT = 0; // "agent id" for things that should be done to ALL agents -extern const LLUUID LL_UUID_ALL_AGENTS; +extern LL_COMMON_API const LLUUID LL_UUID_ALL_AGENTS; -// Governor Linden's agent id. -extern const LLUUID ALEXANDRIA_LINDEN_ID; // inventory library owner -extern const LLUUID GOVERNOR_LINDEN_ID; -extern const LLUUID REALESTATE_LINDEN_ID; +// inventory library owner +extern LL_COMMON_API const LLUUID ALEXANDRIA_LINDEN_ID; + +extern LL_COMMON_API const LLUUID GOVERNOR_LINDEN_ID; +extern LL_COMMON_API const LLUUID REALESTATE_LINDEN_ID; // Maintenance's group id. -extern const LLUUID MAINTENANCE_GROUP_ID; +extern LL_COMMON_API const LLUUID MAINTENANCE_GROUP_ID; // Flags for kick message const U32 KICK_FLAGS_DEFAULT = 0x0; |