From 5facc718441e08843731320fdf7844bab7cbe2a5 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Mon, 7 Jan 2019 00:21:49 +0100 Subject: [PATCH] windows/utility: Add default io completion routine --- source/windows/utility.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/windows/utility.hpp b/source/windows/utility.hpp index e0c1760..799d639 100644 --- a/source/windows/utility.hpp +++ b/source/windows/utility.hpp @@ -50,6 +50,13 @@ namespace datapath { return converter.from_bytes(string); } + static VOID CALLBACK def_io_completion_routine(_In_ DWORD dwErrorCode, + _In_ DWORD dwNumberOfBytesTransfered, + _Inout_ LPOVERLAPPED lpOverlapped) + { + + } + } // namespace utility } // namespace windows } // namespace datapath