Textractor_test/GUI/host/util.h

12 lines
316 B
C
Raw Normal View History

#pragma once
#include "common.h"
namespace Util
{
std::optional<std::wstring> GetClipboardText();
std::wstring StringToWideString(std::string text, UINT encoding = CP_UTF8);
2018-11-23 05:02:45 +08:00
// return true if repetition found (see https://github.com/Artikash/Textractor/issues/40)
bool RemoveRepetition(std::wstring& text);
}