Local-MT-Extension/ExampleExtension/Extension.cpp

36 lines
2.5 KiB
C++
Raw Normal View History

2018-09-02 01:21:35 +08:00
<EFBFBD><EFBFBD>#include "Extension.h"
//#define COPY_CLIPBOARD
//#define EXTRA_NEWLINES
2018-09-02 00:41:53 +08:00
/**
2018-09-02 01:21:35 +08:00
* Param sentence: sentence received by NextHooker (UTF-16).
2018-09-02 00:41:53 +08:00
* Param miscInfo: pointer to start of singly linked list containing misc info about the sentence.
* Return value: whether the sentence was modified.
* NextHooker will display the sentence after all extensions have had a chance to process and/or modify it.
* THIS FUNCTION MAY BE RUN SEVERAL TIMES CONCURRENTLY: PLEASE ENSURE THAT IT IS THREAD SAFE!
*/
2018-09-02 01:21:35 +08:00
bool ProcessSentence(std::wstring& sentence, const InfoForExtension* miscInfo)
{
#ifdef COPY_CLIPBOARD
// This example extension automatically copies sentences from the hook currently selected by the user into the clipboard.
if (GetProperty("current select", miscInfo))
{
HGLOBAL hMem = GlobalAlloc(GMEM_MOVEABLE, (sentence.size() + 2) * sizeof(wchar_t));
2018-09-09 09:19:00 +08:00
memcpy(GlobalLock(hMem), sentence.c_str(), (sentence.size() + 2) * sizeof(wchar_t));
2018-09-02 01:21:35 +08:00
GlobalUnlock(hMem);
OpenClipboard(0);
EmptyClipboard();
SetClipboardData(CF_UNICODETEXT, hMem);
CloseClipboard();
}
return false;
#endif // COPY_CLIPBOARD
2018-09-02 00:41:53 +08:00
#ifdef EXTRA_NEWLINES
2018-09-02 01:21:35 +08:00
// This example extension adds extra newlines to all sentences.
sentence += L"\r\n";
2018-09-02 00:41:53 +08:00
return true;
2018-09-02 01:21:35 +08:00
#endif // EXTRA_NEWLINES
}
2018-07-12 08:07:22 +08:00