├── license.txt ├── readme.md └── src ├── IOCP.sln └── IOCP ├── CopyFiles.cpp ├── CopyFiles.h ├── Exception.h ├── IOCP.vcxproj ├── IOCP.vcxproj.filters ├── IoPool.cpp ├── IoPool.h ├── OvlFile.cpp ├── OvlFile.h ├── StdAfx.cpp ├── StdAfx.h ├── Util.h ├── main.cpp ├── winUtil.cpp └── winUtil.h /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/readme.md -------------------------------------------------------------------------------- /src/IOCP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP.sln -------------------------------------------------------------------------------- /src/IOCP/CopyFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/CopyFiles.cpp -------------------------------------------------------------------------------- /src/IOCP/CopyFiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/CopyFiles.h -------------------------------------------------------------------------------- /src/IOCP/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/Exception.h -------------------------------------------------------------------------------- /src/IOCP/IOCP.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/IOCP.vcxproj -------------------------------------------------------------------------------- /src/IOCP/IOCP.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/IOCP.vcxproj.filters -------------------------------------------------------------------------------- /src/IOCP/IoPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/IoPool.cpp -------------------------------------------------------------------------------- /src/IOCP/IoPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/IoPool.h -------------------------------------------------------------------------------- /src/IOCP/OvlFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/OvlFile.cpp -------------------------------------------------------------------------------- /src/IOCP/OvlFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/OvlFile.h -------------------------------------------------------------------------------- /src/IOCP/StdAfx.cpp: -------------------------------------------------------------------------------- 1 | #include "StdAfx.h" -------------------------------------------------------------------------------- /src/IOCP/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/StdAfx.h -------------------------------------------------------------------------------- /src/IOCP/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/Util.h -------------------------------------------------------------------------------- /src/IOCP/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/main.cpp -------------------------------------------------------------------------------- /src/IOCP/winUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/winUtil.cpp -------------------------------------------------------------------------------- /src/IOCP/winUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apriorit/win-iocp-copying/HEAD/src/IOCP/winUtil.h --------------------------------------------------------------------------------