/* * IXNetSystem.h * Author: Benjamin Sergeant * Copyright (c) 2019 Machine Zone. All rights reserved. */ #pragma once #ifdef _WIN32 #include #include #include #include #include // Define our own poll on Windows typedef unsigned long int nfds_t; int poll(struct pollfd* fds, nfds_t nfds, int timeout); #else #include #include #include #include #include #include #include #include #include #include #endif namespace ix { bool initNetSystem(); bool uninitNetSystem(); } // namespace ix