in case unicode is needed someday
This commit is contained in:
parent
6866e6bfe9
commit
c39356473d
@ -29,12 +29,12 @@ constexpr auto INJECT_FAILED = L"Textractor: couldn't inject";
|
||||
constexpr auto INVALID_CODE = L"Textractor: invalid code";
|
||||
constexpr auto NO_HOOKS = L"Textractor: no hooks detected";
|
||||
constexpr auto INVALID_CODEPAGE = L"Textractor: couldn't convert text (invalid codepage?)";
|
||||
constexpr auto PIPE_CONNECTED = "Textractor: pipe connected";
|
||||
constexpr auto DISABLE_HOOKS = "Textractor: hooks don't work on x64, only read codes work. Engine disabled.";
|
||||
constexpr auto INSERTING_HOOK = "Textractor: inserting hook: ";
|
||||
constexpr auto HOOK_FAILED = "Textractor: failed to insert hook";
|
||||
constexpr auto TOO_MANY_HOOKS = "Textractor: too many hooks: can't insert";
|
||||
constexpr auto FUNC_MISSING = "Textractor: function not present";
|
||||
constexpr auto MODULE_MISSING = "Textractor: module not present";
|
||||
constexpr auto GARBAGE_MEMORY = "Textractor: memory constantly changing, useless to read";
|
||||
constexpr auto REMOVING_HOOK = "Textractor: removing hook: ";
|
||||
constexpr auto PIPE_CONNECTED = u8"Textractor: pipe connected";
|
||||
constexpr auto DISABLE_HOOKS = u8"Textractor: hooks don't work on x64, only read codes work. Engine disabled.";
|
||||
constexpr auto INSERTING_HOOK = u8"Textractor: inserting hook: ";
|
||||
constexpr auto HOOK_FAILED = u8"Textractor: failed to insert hook";
|
||||
constexpr auto TOO_MANY_HOOKS = u8"Textractor: too many hooks: can't insert";
|
||||
constexpr auto FUNC_MISSING = u8"Textractor: function not present";
|
||||
constexpr auto MODULE_MISSING = u8"Textractor: module not present";
|
||||
constexpr auto GARBAGE_MEMORY = u8"Textractor: memory constantly changing, useless to read";
|
||||
constexpr auto REMOVING_HOOK = u8"Textractor: removing hook: ";
|
Loading…
Reference in New Issue
Block a user