1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-06 04:45:32 +00:00

Add missing preprocessor directive for Windows build of server

This commit is contained in:
David Cernat 2016-08-02 07:08:31 +03:00
parent 09d564424f
commit 72026955f5

View file

@ -2,7 +2,10 @@
// Created by koncord on 09.05.16.
//
#include <dlfcn.h>
#ifndef _WIN32
#include <dlfcn.h>
#endif
#include <stdexcept>
#include "LangNative.hpp"
#include <Script/SystemInterface.hpp>