#ifndef __X18_PLUGINS_H #define __X18_PLUGINS_H #include #include #include "strlist.h" #include struct DLL { char *name; bool stored; }; class Plugins { public: void FindCommands(char*,bool); bool IsPluginCommand(char*); char* GetPluginDll(char*); void DLLStored(char*); bool IsDLLStored(char*); protected: DefineList m_commands; std::vector m_storedDLLs; void GetExports(char*,bool); }; #endif