2018-12-17 20:48:14 -05: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;
|
2019-01-10 21:51:20 -05:00
|
|
|
sentence += L"\n";
|
2018-09-01 04:24:22 -04:00
|
|
|
return true;
|
2018-12-18 16:55:07 -05:00
|
|
|
}
|