From: alex Date: Sat, 25 Jan 2014 23:17:42 +0000 (+0400) Subject: Include winsock2.h before windows.h X-Git-Tag: v0.4.4.7-nvc-next-testing2~1 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=82e773143a1bad6efacc2d439d5bb2ffad809466 Include winsock2.h before windows.h --- diff --git a/src/checkpoints.h b/src/checkpoints.h index d5028b3..d55eccb 100644 --- a/src/checkpoints.h +++ b/src/checkpoints.h @@ -5,8 +5,8 @@ #define BITCOIN_CHECKPOINT_H #include -#include "net.h" #include "util.h" +#include "net.h" #define CHECKPOINT_MAX_SPAN (60 * 60) // max 60 minutes before latest block diff --git a/src/irc.cpp b/src/irc.cpp index 4a87fb7..6275a9d 100644 --- a/src/irc.cpp +++ b/src/irc.cpp @@ -4,9 +4,9 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "irc.h" -#include "net.h" #include "strlcpy.h" #include "base58.h" +#include "net.h" using namespace std; using namespace boost;