]> git.tdb.fi Git - libs/net.git/blobdiff - source/net/resolve.h
Decorate things which constitute the public API
[libs/net.git] / source / net / resolve.h
index 212a7f0a47574068b1b7573acf973ef76cbbc5ca..3071b771f569aa57f196c41cc4f8f9520c715130 100644 (file)
@@ -9,6 +9,7 @@
 #include <msp/core/thread.h>
 #include <msp/io/eventdispatcher.h>
 #include <msp/io/pipe.h>
+#include "mspnet_api.h"
 #include "sockaddr.h"
 
 namespace Msp {
@@ -18,19 +19,19 @@ namespace Net {
 the loopback address will be used.  If host is "*", the wildcard address will
 be used.  If service is empty, a socket address with a null service will be
 returned.  With the IP families, these are not very useful. */
-SockAddr *resolve(const std::string &, const std::string &, Family = UNSPEC);
+MSPNET_API SockAddr *resolve(const std::string &, const std::string &, Family = UNSPEC);
 
 /** And overload of resolve() that takes host and service as a single string,
 separated by a colon.  If the host part contains colons, such as is the case
 with a numeric IPv6 address, it must be enclosed in brackets. */
-SockAddr *resolve(const std::string &, Family = UNSPEC);
+MSPNET_API SockAddr *resolve(const std::string &, Family = UNSPEC);
 
 
 /**
 An asynchronous name resolver.  Blocking calls are performed in a thread and
 completion is notified with one of the two signals.
 */
-class Resolver
+class MSPNET_API Resolver
 {
 private:
        struct Task