more documentation

This commit is contained in:
Akash Mozumdar 2020-02-01 19:01:37 -07:00
parent 42e4973721
commit 1300f3c540
2 changed files with 3 additions and 3 deletions

View File

@ -81,6 +81,7 @@ const wchar_t* CLIPBOARD = L"Clipboard";
const wchar_t* ABOUT = L"Textractor " ARCH L" v" VERSION LR"( made by me: Artikash (email: akashmozumdar@gmail.com)
Project homepage: https://github.com/Artikash/Textractor
Tutorial video: https://tinyurl.com/textractor-tutorial
FAQ: https://github.com/Artikash/Textractor/wiki/FAQ
Please contact me with any problems, feature requests, or questions relating to Textractor
You can do so via the project homepage (issues section) or via email
Source code available under GPLv3 at project homepage

View File

@ -204,8 +204,7 @@ void TextHook::Send(uintptr_t dwDataBase)
if (!err)
{
err = true;
ConsoleOutput(SEND_ERROR);
ConsoleOutput("Textractor: in %s", hp.name);
ConsoleOutput("%s in %s", SEND_ERROR, hp.name);
}
}
done:
@ -267,7 +266,7 @@ void TextHook::Read()
}
__except (EXCEPTION_EXECUTE_HANDLER)
{
ConsoleOutput(READ_ERROR);
ConsoleOutput("%s in %s", READ_ERROR, hp.name);
Clear();
}
}