]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/windows/poll_platform.h
Move most platform-specific code into overlay directories
[libs/core.git] / source / io / windows / poll_platform.h
diff --git a/source/io/windows/poll_platform.h b/source/io/windows/poll_platform.h
new file mode 100644 (file)
index 0000000..ccf92c3
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef MSP_IO_POLL_PLATFORM_H_
+#define MSP_IO_POLL_PLATFORM_H_
+
+#include <windows.h>
+#include <vector>
+
+namespace Msp {
+namespace IO {
+
+struct Poller::Private
+{
+       std::vector<HANDLE> handles;
+};
+
+} // namespace IO
+} // namespace Msp
+
+#endif