From: Mikko Rasa Date: Tue, 5 Sep 2023 12:22:03 +0000 (+0300) Subject: Export Handle::Private from the library X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=6bd6ce4f96275c99da68ce674c6dd7ee5236812c;p=libs%2Fcore.git Export Handle::Private from the library It's needed by other libraries which implement I/O classes, particularly mspnet. --- diff --git a/source/io/handle_private.h b/source/io/handle_private.h index 4fa690a..165f818 100644 --- a/source/io/handle_private.h +++ b/source/io/handle_private.h @@ -1,13 +1,14 @@ #ifndef MSP_IO_HANDLE_PRIVATE_H_ #define MSP_IO_HANDLE_PRIVATE_H_ +#include #include "handle.h" #include "handle_platform.h" namespace Msp { namespace IO { -struct Handle::Private +struct MSPCORE_API Handle::Private { PlatformHandle handle;