#include using namespace Upp; #include #include #define DLLPATH "C:\\upp\\out\\MINGW.Addon.Debug_full.Dll" CONSOLE_APP_MAIN { AddOnLoader addOns; addOns.LoadFolder(DLLPATH); for (int i = 0; i < addOns.GetCount(); i++) { Cout() << "Name: " << addOns[i]->GetName() << " v" << addOns[i]->GetMajorRevision() << "." << addOns[i]->GetMinorRevision() << " - Action: " << addOns[i]->Do() << "\n"; } }