]> git.tdb.fi Git - libs/core.git/blob - source/io/windows/poll_platform.h
Move most platform-specific code into overlay directories
[libs/core.git] / source / io / windows / poll_platform.h
1 #ifndef MSP_IO_POLL_PLATFORM_H_
2 #define MSP_IO_POLL_PLATFORM_H_
3
4 #include <windows.h>
5 #include <vector>
6
7 namespace Msp {
8 namespace IO {
9
10 struct Poller::Private
11 {
12         std::vector<HANDLE> handles;
13 };
14
15 } // namespace IO
16 } // namespace Msp
17
18 #endif