mirror of
https://github.com/debauchee/barrier.git
synced 2024-12-19 00:41:49 +03:00
fee4095624
synergy.cpp and server.cpp into cmd/synergyd as synergyd.cpp. Moved and renamed related files. Moved remaining source files into lib/.... Modified and added makefiles as appropriate. Result is that library files are under lib with each library in its own directory and program files are under cmd with each command in its own directory.
41 lines
849 B
C++
Executable File
41 lines
849 B
C++
Executable File
#include "CMSWindowsClipboardUTF16Converter.h"
|
|
#include "CUnicode.h"
|
|
|
|
//
|
|
// CMSWindowsClipboardUTF16Converter
|
|
//
|
|
|
|
CMSWindowsClipboardUTF16Converter::CMSWindowsClipboardUTF16Converter()
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
CMSWindowsClipboardUTF16Converter::~CMSWindowsClipboardUTF16Converter()
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
UINT
|
|
CMSWindowsClipboardUTF16Converter::getWin32Format() const
|
|
{
|
|
return CF_UNICODETEXT;
|
|
}
|
|
|
|
CString
|
|
CMSWindowsClipboardUTF16Converter::doFromIClipboard(const CString& data) const
|
|
{
|
|
// convert and add nul terminator
|
|
return CUnicode::UTF8ToUTF16(data).append(sizeof(wchar_t), 0);
|
|
}
|
|
|
|
CString
|
|
CMSWindowsClipboardUTF16Converter::doToIClipboard(const CString& data) const
|
|
{
|
|
// convert and strip nul terminator
|
|
CString dst = CUnicode::UTF16ToUTF8(data);
|
|
if (dst.size() > 0 && dst[dst.size() - 1] == '\0') {
|
|
dst.erase(dst.size() - 1);
|
|
}
|
|
return dst;
|
|
}
|