2018-07-25 01:39:02 +08:00
|
|
|
#include "hostsignaller.h"
|
|
|
|
|
|
|
|
void HostSignaller::Initialize()
|
|
|
|
{
|
2018-07-26 01:46:59 +08:00
|
|
|
Host::RegisterProcessAttachCallback([&](DWORD pid){ emit AddProcess(pid); });
|
|
|
|
Host::RegisterProcessDetachCallback([&](DWORD pid){ emit RemoveProcess(pid); });
|
|
|
|
Host::RegisterThreadCreateCallback([&](TextThread* thread)
|
|
|
|
{
|
|
|
|
emit AddThread(thread);
|
|
|
|
thread->RegisterOutputCallBack([&](TextThread* thread, std::wstring output)
|
|
|
|
{
|
|
|
|
//output = DispatchToExtensions(output);
|
|
|
|
emit ThreadOutput(thread, QString::fromWCharArray(output.c_str()));
|
|
|
|
return output;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
Host::RegisterThreadRemoveCallback([&](TextThread* thread){ emit RemoveThread(thread); });
|
2018-07-25 01:39:02 +08:00
|
|
|
}
|