summaryrefslogtreecommitdiffstats
path: root/depends/util/include/userutils.h
blob: aadc112eb2569f430ec778de14429ba15c41b867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once

#include <QString>

#include "multimc_util_export.h"

namespace Util
{
// Get the Directory representing the User's Desktop
MULTIMC_UTIL_EXPORT QString getDesktopDir();

// Create a shortcut at *location*, pointing to *dest* called with the arguments *args*
// call it *name* and assign it the icon *icon*
// return true if operation succeeded
MULTIMC_UTIL_EXPORT bool createShortCut(QString location, QString dest, QStringList args,
								   QString name, QString iconLocation);
}