]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/environ.h
Add decorations for things which are considered part of the API
[libs/core.git] / source / core / environ.h
index 67fde05881651f467a87fbb4481f167ffea5aa55..7fbca16a126b406d68a9ffb9f6775a12caf0d943 100644 (file)
@@ -2,12 +2,13 @@
 #define ENVIRON_H_
 
 #include <string>
+#include "mspcore_api.h"
 
 namespace Msp {
 
-std::string getenv(const std::string &);
-void setenv(const std::string &, const std::string &);
-void unsetenv(const std::string &);
+MSPCORE_API std::string getenv(const std::string &);
+MSPCORE_API void setenv(const std::string &, const std::string &);
+MSPCORE_API void unsetenv(const std::string &);
 
 } // namespace Msp