Sunjammer's code is now fully optimized

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@668 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-08 16:35:53 +00:00
parent 9a6e21556f
commit 93a5fa4c1c
3 changed files with 26 additions and 20 deletions

View file

@ -9,6 +9,10 @@
#include "strlist.h"
#include <vector>
struct DLL {
char *name;
bool stored;
};
class Plugins
{
@ -16,12 +20,12 @@ class Plugins
void FindCommands(char*,bool);
bool IsPluginCommand(char*);
char* GetPluginDll(char*);
int GetDllDataHandle(char*);
void StoreDllDataHandle(char*,int);
void DLLStored(char*);
bool IsDLLStored(char*);
protected:
DefineList m_commands;
std::vector<int> m_dataHandles;
std::vector<DLL> m_storedDLLs;
void GetExports(char*,bool);
};