Plugins used both in uninstaller and installer problems should be fixed now

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1817 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-11-22 12:45:38 +00:00
parent 5abd9f0dde
commit 83b92fb6ea
3 changed files with 14 additions and 10 deletions

View file

@ -14,12 +14,13 @@ class Plugins
public:
void FindCommands(char*,bool);
bool IsPluginCommand(char*);
char* GetPluginDll(char*, int*);
void SetDllDataHandle(char*, int);
char* GetPluginDll(int, char*, int*);
void SetDllDataHandle(int, char*, int);
protected:
DefineList m_commands;
GrowBuf m_dataHandles;
GrowBuf m_uninstDataHandles;
int m_funcsCount;
void GetExports(char*,bool);