Deskflow 1.24.0.365
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 <string>
10
11namespace deskflow::filesystem {
12
13#ifdef SYSAPI_WIN32
14std::wstring path(const std::string &filePath);
15#else
16std::string path(const std::string &filePath);
17#endif
18
19} // namespace deskflow::filesystem
Definition Path.cpp:13
std::string path(const std::string &filePath)
Definition Path.cpp:31