diff options
author | Aleric Inglewood | 2010-11-07 16:55:50 +0100 |
---|---|---|
committer | Aleric Inglewood | 2010-11-07 18:27:48 +0100 |
commit | 5b4356cefbaa7dbdc8656e7283c110a893b1a89c (patch) | |
tree | 43fae9945562c3281746370d623877840ed884b2 /linden/indra/llcommon/llrand.h | |
parent | IMP-688: ERROR: getString: Invalid string control nick01 (diff) | |
download | meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.zip meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.tar.gz meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.tar.bz2 meta-impy-5b4356cefbaa7dbdc8656e7283c110a893b1a89c.tar.xz |
IMP-692: SNOW-713: Global objects in libllcommon duplicated in plugins
See http://jira.secondlife.com/browse/SNOW-713
This patch makes llcommon shared. It contains the following snowglobe
(SVN) changesets: 3478, 3479, 3480, 3481, 3482, 3485, 3496, 3498, 3500,
3519 and 3531, plus the fix for all rejects. Note that changes
to scripts/automated_build_scripts/opensrc-build.sh (changesets 3500
and 3625) were ignored as we don't have scripts/automated_build_scripts.
Diffstat (limited to 'linden/indra/llcommon/llrand.h')
-rw-r--r-- | linden/indra/llcommon/llrand.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/llcommon/llrand.h b/linden/indra/llcommon/llrand.h index d12597b..73ea179 100644 --- a/linden/indra/llcommon/llrand.h +++ b/linden/indra/llcommon/llrand.h | |||
@@ -65,32 +65,32 @@ | |||
65 | /** | 65 | /** |
66 | *@brief Generate a float from [0, RAND_MAX). | 66 | *@brief Generate a float from [0, RAND_MAX). |
67 | */ | 67 | */ |
68 | S32 ll_rand(); | 68 | LL_COMMON_API S32 ll_rand(); |
69 | 69 | ||
70 | /** | 70 | /** |
71 | *@brief Generate a float from [0, val) or (val, 0]. | 71 | *@brief Generate a float from [0, val) or (val, 0]. |
72 | */ | 72 | */ |
73 | S32 ll_rand(S32 val); | 73 | LL_COMMON_API S32 ll_rand(S32 val); |
74 | 74 | ||
75 | /** | 75 | /** |
76 | *@brief Generate a float from [0, 1.0). | 76 | *@brief Generate a float from [0, 1.0). |
77 | */ | 77 | */ |
78 | F32 ll_frand(); | 78 | LL_COMMON_API F32 ll_frand(); |
79 | 79 | ||
80 | /** | 80 | /** |
81 | *@brief Generate a float from [0, val) or (val, 0]. | 81 | *@brief Generate a float from [0, val) or (val, 0]. |
82 | */ | 82 | */ |
83 | F32 ll_frand(F32 val); | 83 | LL_COMMON_API F32 ll_frand(F32 val); |
84 | 84 | ||
85 | /** | 85 | /** |
86 | *@brief Generate a double from [0, 1.0). | 86 | *@brief Generate a double from [0, 1.0). |
87 | */ | 87 | */ |
88 | F64 ll_drand(); | 88 | LL_COMMON_API F64 ll_drand(); |
89 | 89 | ||
90 | /** | 90 | /** |
91 | *@brief Generate a double from [0, val) or (val, 0]. | 91 | *@brief Generate a double from [0, val) or (val, 0]. |
92 | */ | 92 | */ |
93 | F64 ll_drand(F64 val); | 93 | LL_COMMON_API F64 ll_drand(F64 val); |
94 | 94 | ||
95 | /** | 95 | /** |
96 | * @brief typedefs for good boost lagged fibonacci. | 96 | * @brief typedefs for good boost lagged fibonacci. |