1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef PHP_WIN32_SELECT_H
- #define PHP_WIN32_SELECT_H
- #include "php_network.h"
- PHPAPI int php_select(php_socket_t max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv);
- #endif
|