rpcsx/rpcs3/rpcs3qt/shortcut_utils.h

21 lines
471 B
C
Raw Normal View History

2022-02-12 02:19:46 +01:00
#pragma once
namespace gui::utils
{
enum shortcut_location
{
desktop,
applications,
#ifdef _WIN32
rpcs3_shortcuts,
#endif
};
2022-02-12 02:19:46 +01:00
bool create_shortcut(const std::string& name,
const std::string& target_cli_args,
const std::string& description,
const std::string& src_icon_path,
const std::string& target_icon_dir,
shortcut_location shortcut_location);
2022-02-12 02:19:46 +01:00
}