pollfd

Data structure describing a polling request.

  1. struct pollfd
  2. struct pollfd
    version(Windows)
    extern (C) nothrow @nogc
    static if(!((!__traits(compiles, core.sys.windows.sdkddkver._WIN32_WINNT)) || (core.sys.windows.sdkddkver._WIN32_WINNT < 0x0600)))
    struct pollfd {}

Members

Variables

events
core.sys.windows.winnt.SHORT events;

requested events

fd
core.sys.windows.winsock2.SOCKET fd;

file descriptor

revents
core.sys.windows.winnt.SHORT revents;

returned events

Meta