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:
parent
9a6e21556f
commit
93a5fa4c1c
3 changed files with 26 additions and 20 deletions
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue