2018-10-11 14:29:11 -04:00
|
|
|
#include "extension.h"
|
2018-08-19 00:13:19 -04:00
|
|
|
|
2018-09-22 15:08:31 -04:00
|
|
|
bool ProcessSentence(std::wstring& sentence, SentenceInfo sentenceInfo)
|
2018-08-19 00:13:19 -04:00
|
|
|
{
|
2018-09-22 15:08:31 -04:00
|
|
|
if (sentenceInfo["hook address"] == -1) return false;
|
2018-09-01 04:24:22 -04:00
|
|
|
sentence += L"\r\n";
|
|
|
|
return true;
|
2018-08-19 00:13:19 -04:00
|
|
|
}
|