2018-12-18 09:48:14 +08:00
|
|
|
#include "extension.h"
|
2018-08-19 12:13:19 +08:00
|
|
|
|
2018-09-23 03:08:31 +08:00
|
|
|
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
|
2018-08-19 12:13:19 +08:00
|
|
|
{
|
2018-11-04 11:26:27 +08:00
|
|
|
if (sentenceInfo["current select"] && sentenceInfo["hook address"] != -1)
|
2018-08-19 12:13:19 +08:00
|
|
|
{
|
2018-11-15 13:06:10 +08:00
|
|
|
if (!OpenClipboard(FindWindowW(NULL, L"Textractor"))) return false;
|
2018-09-01 16:24:22 +08:00
|
|
|
HGLOBAL hMem = GlobalAlloc(GMEM_MOVEABLE, (sentence.size() + 2) * sizeof(wchar_t));
|
|
|
|
memcpy(GlobalLock(hMem), sentence.c_str(), (sentence.size() + 2) * sizeof(wchar_t));
|
|
|
|
EmptyClipboard();
|
|
|
|
SetClipboardData(CF_UNICODETEXT, hMem);
|
2018-11-15 13:06:10 +08:00
|
|
|
GlobalUnlock(hMem);
|
2018-09-01 16:24:22 +08:00
|
|
|
CloseClipboard();
|
2018-08-19 12:13:19 +08:00
|
|
|
}
|
2018-09-01 16:24:22 +08:00
|
|
|
return false;
|
2018-12-19 05:55:07 +08:00
|
|
|
}
|