#ifndef __X18_PLUGINS_H #define __X18_PLUGINS_H #include #include #include "strlist.h" #include class Plugins { public: void FindCommands(char*,bool); bool IsPluginCommand(char*); char* GetPluginDll(char*, int*); void SetDllDataHandle(char*, int); protected: DefineList m_commands; GrowBuf m_dataHandles; int m_funcsCount; void GetExports(char*,bool); }; #endif