From c39356473d8f33a3ff41aafc687b7ec9f7410392 Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Sun, 11 Nov 2018 00:40:58 -0500 Subject: [PATCH] in case unicode is needed someday --- include/text.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/include/text.h b/include/text.h index 1305af1..2535256 100644 --- a/include/text.h +++ b/include/text.h @@ -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: "; \ No newline at end of file +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: "; \ No newline at end of file