Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
Path.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2014 - 2021 Symless Ltd.
4 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
5 */
6
7#pragma once
8
9#include "common/Common.h"
10#include <string>
11
12namespace deskflow::filesystem {
13
14#ifdef SYSAPI_WIN32
15std::wstring path(const std::string &filePath);
16#else
17std::string path(const std::string &filePath);
18#endif
19
20} // namespace deskflow::filesystem
Definition Path.cpp:13
std::string path(const std::string &filePath)
Definition Path.cpp:31