2018-08-19 12:13:19 +08:00
|
|
|
#include "extensions.h"
|
|
|
|
|
2018-09-01 16:24:22 +08:00
|
|
|
bool ProcessSentence(std::wstring& sentence, const InfoForExtension* miscInfo)
|
2018-08-19 12:13:19 +08:00
|
|
|
{
|
2018-09-01 16:24:22 +08:00
|
|
|
if (GetProperty("hook address", miscInfo) == -1) return false;
|
|
|
|
sentence += L"\r\n";
|
|
|
|
return true;
|
2018-08-19 12:13:19 +08:00
|
|
|
}
|