From 6bd6ce4f96275c99da68ce674c6dd7ee5236812c Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 5 Sep 2023 15:22:03 +0300 Subject: [PATCH] Export Handle::Private from the library It's needed by other libraries which implement I/O classes, particularly mspnet. --- source/io/handle_private.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.45.2