diff options
author | iDunk5400 <iDunk5400@users.noreply.github.com> | 2017-11-15 23:12:02 +0100 |
---|---|---|
committer | iDunk5400 <iDunk5400@users.noreply.github.com> | 2017-11-15 23:12:02 +0100 |
commit | fdf0acbf972340d38a74cb1f3860c2d44b728e2e (patch) | |
tree | b07e8d1de195eeb64892b302b0a29191b02f73ab /src/common/util.h | |
parent | Merge pull request #2818 (diff) | |
download | monero-fdf0acbf972340d38a74cb1f3860c2d44b728e2e.tar.xz |
Tools, daemonizer: fix building on Windows
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/util.h b/src/common/util.h index 1aac026c1..53ff78af8 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -39,6 +39,11 @@ #include <memory> #include <string> +#ifdef _WIN32 +#include "windows.h" +#include "misc_log_ex.h" +#endif + #include "crypto/hash.h" /*! \brief Various Tools |