Include missing "windows.h"

Now that libzim doesn't inculde "windows.h" in its public headers it fails
if we don't include it.
This commit is contained in:
Matthieu Gautier 2020-05-18 13:27:14 +02:00
parent 5d21baa759
commit 00b810d649

View File

@ -23,7 +23,9 @@
#include <kiwix/name_mapper.h>
#include <kiwix/tools/otherTools.h>
#ifndef _WIN32
#ifdef _WIN32
# include <windows.h>
#else
# include <unistd.h>
#endif