wsaio.c 495 B

1234567891011121314151617181920212223242526
  1. #include "iowatcher.h"
  2. #ifdef EVENT_IOCP
  3. #include "hplatform.h"
  4. hio_t* haccept (hloop_t* loop, int listenfd, haccept_cb accept_cb) {
  5. return NULL;
  6. }
  7. hio_t* hconnect (hloop_t* loop, int connfd, hconnect_cb connect_cb) {
  8. return NULL;
  9. }
  10. hio_t* hread (hloop_t* loop, int fd, void* buf, size_t len, hread_cb read_cb) {
  11. return NULL;
  12. }
  13. hio_t* hwrite (hloop_t* loop, int fd, const void* buf, size_t len, hwrite_cb cb) {
  14. return NULL;
  15. }
  16. void hclose (hio_t* io) {
  17. }
  18. #endif