aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsys.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llsys.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/linden/indra/llcommon/llsys.h b/linden/indra/llcommon/llsys.h
index 03f48ca..d5575b2 100644
--- a/linden/indra/llcommon/llsys.h
+++ b/linden/indra/llcommon/llsys.h
@@ -45,7 +45,7 @@
45#include <iosfwd> 45#include <iosfwd>
46#include <string> 46#include <string>
47 47
48class LLOSInfo 48class LL_COMMON_API LLOSInfo
49{ 49{
50public: 50public:
51 LLOSInfo(); 51 LLOSInfo();
@@ -70,7 +70,7 @@ private:
70}; 70};
71 71
72 72
73class LLCPUInfo 73class LL_COMMON_API LLCPUInfo
74{ 74{
75public: 75public:
76 LLCPUInfo(); 76 LLCPUInfo();
@@ -99,7 +99,7 @@ private:
99// 99//
100// CLASS LLMemoryInfo 100// CLASS LLMemoryInfo
101 101
102class LLMemoryInfo 102class LL_COMMON_API LLMemoryInfo
103 103
104/*! @brief Class to query the memory subsystem 104/*! @brief Class to query the memory subsystem
105 105
@@ -123,15 +123,15 @@ public:
123}; 123};
124 124
125 125
126std::ostream& operator<<(std::ostream& s, const LLOSInfo& info); 126LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLOSInfo& info);
127std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info); 127LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLCPUInfo& info);
128std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info); 128LL_COMMON_API std::ostream& operator<<(std::ostream& s, const LLMemoryInfo& info);
129 129
130// gunzip srcfile into dstfile. Returns FALSE on error. 130// gunzip srcfile into dstfile. Returns FALSE on error.
131BOOL gunzip_file(const std::string& srcfile, const std::string& dstfile); 131LL_COMMON_API BOOL gunzip_file(const std::string& srcfile, const std::string& dstfile);
132// gzip srcfile into dstfile. Returns FALSE on error. 132// gzip srcfile into dstfile. Returns FALSE on error.
133BOOL gzip_file(const std::string& srcfile, const std::string& dstfile); 133LL_COMMON_API BOOL gzip_file(const std::string& srcfile, const std::string& dstfile);
134 134
135extern LLCPUInfo gSysCPU; 135LL_COMMON_API extern LLCPUInfo gSysCPU;
136 136
137#endif // LL_LLSYS_H 137#endif // LL_LLSYS_H