diff options
| author | Eugene Wissner <belka@caraus.de> | 2018-04-25 13:09:34 +0200 |
|---|---|---|
| committer | Eugene Wissner <belka@caraus.de> | 2018-04-25 13:09:34 +0200 |
| commit | 2185a70ac8c3e5a145f8d21305a7596fe04812c5 (patch) | |
| tree | e04dbf90d53cbeae9e9498a07ef93c041b61ed2e | |
| parent | b94da1f58aa22ec3f48d88b2a3f2ee293869235a (diff) | |
| download | tanya-2185a70ac8c3e5a145f8d21305a7596fe04812c5.tar.gz | |
Fix #33
| -rw-r--r-- | source/tanya/network/socket.d | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source/tanya/network/socket.d b/source/tanya/network/socket.d index 1190d43..d68378b 100644 --- a/source/tanya/network/socket.d +++ b/source/tanya/network/socket.d @@ -45,10 +45,8 @@ version (Posix) } else version (Windows) { - import core.sys.windows.winbase : ERROR_IO_INCOMPLETE, - ERROR_IO_PENDING, - GetModuleHandle, - GetProcAddress; + import core.sys.windows.winbase; + import core.sys.windows.winerror; import core.sys.windows.winsock2 : accept, addrinfo, bind, |
