mirror of
https://github.com/Artikash/Textractor.git
synced 2024-12-24 01:14:12 +08:00
10 lines
180 B
C
10 lines
180 B
C
|
#pragma once
|
||
|
|
||
|
#include "common.h"
|
||
|
|
||
|
namespace Util
|
||
|
{
|
||
|
std::optional<std::wstring> GetClipboardText();
|
||
|
std::wstring StringToWideString(std::string text, UINT encoding = CP_UTF8);
|
||
|
}
|