// Common function table export for custom DLL functions exposed to AFL #include "Plugin.h" __declspec(dllexport) int GetPluginInfo(struct PluginInfo *pInfo) { pInfo->StructSize = sizeof(struct PluginInfo); pInfo->APIVersion = 100; // ADK version pInfo->Type = 1; // 1 for Data Plugin, 2 for Function Plugin strcpy_s(pInfo->Name, 64, "MyCustomAmiBrokerPlugin"); return 1; } Use code with caution.
Plugins hosted on GitHub generally fall into three functional categories: amibroker plugin github
Paste it directly into the Plugins subdirectory (e.g., C:\Program Files\AmiBroker\Plugins ). // Common function table export for custom DLL