2018-11-04 11:26:27 +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-09-23 03:08:31 +08:00
|
|
|
if (sentenceInfo["hook address"] == -1) return false;
|
2018-09-01 16:24:22 +08:00
|
|
|
sentence += L"\r\n";
|
|
|
|
return true;
|
2018-08-19 12:13:19 +08:00
|
|
|
}
|