#include "stdafx.h" #include "CGameInterface.h" #ifdef _WIN32 #define WIN32_LEAN_AND_MEAN //excludes rarely used stuff from windows headers - delete this line if something is missing #include //for .dll libs #else #include #endif /* * CGameInterface.cpp, part of VCMI engine * * Authors: listed in file AUTHORS in main folder * * License: GNU General Public License v2.0 or later * Full text of license available in license.txt file, in main folder * */ CGlobalAI * CAIHandler::getNewAI(CCallback * cb, std::string dllname) { char temp[50]; CGlobalAI * ret=NULL; CGlobalAI*(*getAI)(); void(*getName)(char*); std::string dllPath; #ifdef _WIN32 dllPath = "AI/"+dllname+".dll"; HINSTANCE dll = LoadLibraryA(dllPath.c_str()); if (!dll) { tlog1 << "Cannot open AI library ("<dllName = dllname; return ret; }