summaryrefslogtreecommitdiff
path: root/src/T2DLL/CPlugin.cpp
blob: a6f71c3c7b99c073368dc6d2ae83c4ba5da02124 (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
#include "CPlugin.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


CPlugin::CPlugin(DWORD type, T2PluginSpecifier& specifier) {
	mSpecifier = specifier;
	mModuleHandle = specifier.mInstance;
	mType = type;
	mIsLoaded = false;
}

/*virtual*/ CPlugin::~CPlugin() {
}

/*virtual*/ void CPlugin::GetName(CString&) {
}

/*virtual*/ void CPlugin::GetInfoString(CString&) {
}

/*virtual*/ HINSTANCE CPlugin::GetModuleHandle() {
	return mModuleHandle;
}