If not, read this first.
https://github.com/Antollo/anScript
.Dll1
project (rename it as you wish).Dll1.cpp
(or renamed file).extern "C"
block.#include "stdafx.h"
#include "scanAndRun.h"
extern "C"
{
__declspec(dllexport) int printArgumentsNames(std::vector<variableName> arg, functionsManager* superManager);
}
int printArgumentsNames(std::vector<variableName> arg, functionsManager* superManager)
{
for (auto a : arg)
{
std::cout << a << std::endl;
}
return 0;
}