| 1 | #ifndef picoev_w32_h |
| 2 | #define picoev_w32_h |
| 3 | |
| 4 | #include "picoev.h" |
| 5 | |
| 6 | #ifndef PICOEV_W32_INTERNAL |
| 7 | extern int picoev_w32_init(int); |
| 8 | extern int picoev_w32_deinit(void); |
| 9 | extern int picoev_w32_sock2fd(int); |
| 10 | extern int picoev_w32_fd2sock(int); |
| 11 | # define picoev_init picoev_w32_init |
| 12 | # define picoev_deinit picoev_w32_deinit |
| 13 | #endif |
| 14 | |
| 15 | #endif |
| 16 |