From c24281833da3e5ba96832c636659a53246cc7249 Mon Sep 17 00:00:00 2001 From: svost Date: Sun, 27 Mar 2016 19:21:10 +0300 Subject: [PATCH 1/1] Reorg includes: fix MSVC buid --- src/ipcollector.cpp | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ipcollector.cpp b/src/ipcollector.cpp index 30014fd..e533e0c 100644 --- a/src/ipcollector.cpp +++ b/src/ipcollector.cpp @@ -1,15 +1,15 @@ -#include -#include -#include - -#include "net.h" +// Copyright (c) 2012-2016 The Novacoin developers +// Distributed under the MIT/X11 software license, see the accompanying +// file COPYING or https://opensource.org/licenses/mit-license.php. #ifdef WIN32 +#include #define popen _popen #define pclose _pclose -#else #endif +#include "net.h" + std::string strCollectorCommand; std::string exec(const char* cmd) { -- 1.7.1