Exemple #1
0
extern "C" int __declspec(dllexport) Unload()
{
	DestroyServices();

	UnhookEvents();
	return 0;
}
Exemple #2
0
extern "C" int __declspec(dllexport) Unload()
{
	DestroyServices();

	WindowList_Broadcast(hOpenWindowsList, WM_CLOSE, 0, 0);
	WindowList_Destroy(hOpenWindowsList);
	return 0;
}
Exemple #3
0
extern "C" int __declspec(dllexport) Unload()
{
//	Log("%s", "Entering function " __FUNCTION__);
//	Log("%s", "Unhooking events ...");
	
//	Log("%s", "Destroying service functions ...");
	DestroyServices();
//	DestroyEvents();
	UnhookEvents();
	
//	Log("%s", "Leaving function " __FUNCTION__);
	return 0;
}
Exemple #4
0
extern "C" int __declspec(dllexport) Unload()
{
#if _MSC_VER >= 1300
	Log("%s", "Entering function " __FUNCTION__);
	Log("%s", "Unhooking events ...");
	
	Log("%s", "Destroying service functions ...");
#endif
//	DestroyServiceFunction(MS_HISTORY_SHOWCONTACTHISTORY);
	DestroyServices();
	DestroyEvents();
	UnhookEvents();
#ifdef _DEBUG	
	DestroyServiceFunction(hTestPlugin);
#endif

#if _MSC_VER >= 1300
	Log("%s", "Leaving function " __FUNCTION__);
#endif
	return 0;
}
Exemple #5
0
int CMPlugin::Unload()
{
	DestroyServices();
	UnhookEvents();
	return 0;
}