mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-01 21:02:39 +08:00
20 lines
434 B
C++
20 lines
434 B
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
|
|
* SPDX-FileCopyrightText: (C) 2002 Chris Schoeneman
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#include "arch/unix/ArchStringUnix.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
//
|
|
// ArchStringUnix
|
|
//
|
|
|
|
IArchString::EWideCharEncoding ArchStringUnix::getWideCharEncoding()
|
|
{
|
|
return EWideCharEncoding::kUCS4;
|
|
}
|