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