summaryrefslogtreecommitdiff
path: root/plugins/PluginLoader/catchcopy-v0002/pluginLoader.h
blob: 9a913e32e31a3650cf1d1dcad50a79b2dbdc6e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/** \file pluginLoader.h
\brief Define the plugin loader
\author alpha_one_x86
\version 0.3
\date 2010 */

#ifndef PLUGIN_LOADER_TEST_H
#define PLUGIN_LOADER_TEST_H

#include <QObject>
#include <QtCore>
#include <QMessageBox>

#include <QString>
#include <QStringList>
#include <QProcess>
#include <windows.h>
#include <tlhelp32.h>

#include "../../../interface/PluginInterface_PluginLoader.h"
#include "Environment.h"

/// \brief \brief Define the plugin loader
class PluginLoader : public PluginInterface_PluginLoader
{
	Q_OBJECT
	Q_INTERFACES(PluginInterface_PluginLoader)
public:
        PluginLoader();
        ~PluginLoader();
        void setEnabled(bool);
	void setResources(OptionInterface * options,QString writePath,QString pluginPath,bool portableVersion);
private:
	QString pluginPath;
	QStringList importantDll,secondDll;
	bool RegisterShellExtDll(QString dllPath, bool bRegister,bool quiet);
	bool checkExistsDll();
	bool dllChecked;
	bool needBeRegistred;
	bool WINAPI DLLEjecteurW(DWORD dwPid,PWSTR szDLLPath);
	void HardUnloadDLL(QString myDllName);
signals:
	void newState(CatchState);
	#ifdef ULTRACOPIER_PLUGIN_DEBUG
	/// \brief To debug source
	void debugInformation(DebugLevel level,QString fonction,QString text,QString file,int ligne);
	#endif
};

#endif // PLUGIN_LOADER_TEST_H