NSIS/Source/Plugins.h
sunjammerx 7e6be3cf1e - Fixed a bug in the dll export scanner (spotted and cured by CodeSquid)
- Fixed a bug in the installer runtime (spotted by CodeSquid)
- Renamed all usage of ExternalCommand to Plugin
- Added a compile time PluginDir command


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@650 212acab6-be3b-0410-9dea-997c60f758d6
2002-08-05 19:13:52 +00:00

30 lines
No EOL
464 B
C++

#ifndef __X18_PLUGINS_H
#define __X18_PLUGINS_H
#include <windows.h>
#include <stdio.h>
#include "strlist.h"
#include <vector>
class Plugins
{
public:
void FindCommands(char*,bool);
bool IsPluginCommand(char*);
char* GetPluginDll(char*);
int GetDllDataHandle(char*);
void StoreDllDataHandle(char*,int);
protected:
DefineList m_commands;
std::vector<int> m_dataHandles;
void GetExports(char*,bool);
};
#endif