]> git.tdb.fi Git - libs/core.git/commitdiff
Export Handle::Private from the library
authorMikko Rasa <tdb@tdb.fi>
Tue, 5 Sep 2023 12:22:03 +0000 (15:22 +0300)
committerMikko Rasa <tdb@tdb.fi>
Tue, 5 Sep 2023 12:22:03 +0000 (15:22 +0300)
It's needed by other libraries which implement I/O classes, particularly
mspnet.

source/io/handle_private.h

index 4fa690ab3c50a1bde134de16b69013a80e82aeba..165f818bfd282d8b7ac5d5a72e92db18882f9efb 100644 (file)
@@ -1,13 +1,14 @@
 #ifndef MSP_IO_HANDLE_PRIVATE_H_
 #define MSP_IO_HANDLE_PRIVATE_H_
 
+#include <msp/core/mspcore_api.h>
 #include "handle.h"
 #include "handle_platform.h"
 
 namespace Msp {
 namespace IO {
 
-struct Handle::Private
+struct MSPCORE_API Handle::Private
 {
        PlatformHandle handle;