
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2251 212acab6-be3b-0410-9dea-997c60f758d6
32 lines
No EOL
513 B
C++
32 lines
No EOL
513 B
C++
|
|
|
|
#ifndef __X18_PLUGINS_H
|
|
#define __X18_PLUGINS_H
|
|
|
|
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
#include "strlist.h"
|
|
#include <vector>
|
|
|
|
class Plugins
|
|
{
|
|
public:
|
|
Plugins();
|
|
|
|
void FindCommands(char*,bool);
|
|
bool IsPluginCommand(char*);
|
|
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);
|
|
};
|
|
|
|
|
|
#endif |