Textractor_test/extensions/extranewlines.cpp

8 lines
207 B
C++
Raw Normal View History

#include "extensions.h"
bool ProcessSentence(std::wstring& sentence, const InfoForExtension* miscInfo)
{
if (GetProperty("hook address", miscInfo) == -1) return false;
sentence += L"\r\n";
return true;
}