mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-07 21:07:23 +08:00
21 lines
448 B
C++
21 lines
448 B
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2014 - 2021 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "common/Common.h"
|
|
#include <string>
|
|
|
|
namespace deskflow::filesystem {
|
|
|
|
#ifdef SYSAPI_WIN32
|
|
std::wstring path(const std::string &filePath);
|
|
#else
|
|
std::string path(const std::string &filePath);
|
|
#endif
|
|
|
|
} // namespace deskflow::filesystem
|