mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 17:20:14 +01:00
12 lines
361 B
C++
12 lines
361 B
C++
#pragma once
|
|
|
|
namespace gui::utils
|
|
{
|
|
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,
|
|
bool is_desktop_shortcut);
|
|
}
|