blob: 44400113d2c30d33d8b6a1e7b7c2f8e0a7bf107e [file] [log] [blame]
Edric Milaret4bba46d2015-04-29 16:33:38 -04001/***************************************************************************
2 * Copyright (C) 2015 by Savoir-Faire Linux *
3 * Author: Edric Ladent Milaret <edric.ladent-milaret@savoirfairelinux.com>*
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
18
19#ifndef UTILS_H
20#define UTILS_H
21
Edric Milaretb37aa1f2015-07-09 16:39:04 -040022//Needed for OS detection
23#include <QtGlobal>
24
25#ifdef Q_OS_WIN32
Edric Milaret4bba46d2015-04-29 16:33:38 -040026#include <windows.h>
Edric Milaretb37aa1f2015-07-09 16:39:04 -040027#else //LINUX
28#define LPCWSTR char*
29#endif
Edric Milaret4bba46d2015-04-29 16:33:38 -040030
31#include <string>
Edric Milaret031c3052015-04-29 18:14:18 -040032#include <QString>
Edric Milaret4bba46d2015-04-29 16:33:38 -040033
34class Utils
35{
36public:
37 static bool CreateStartupLink();
38 static void DeleteStartupLink();
39 static bool CreateLink(LPCWSTR lpszPathObj, LPCWSTR lpszPathLink);
40 static bool CheckStartupLink();
Edric Milaret031c3052015-04-29 18:14:18 -040041 static QString GetRingtonePath();
Edric Milaret4bba46d2015-04-29 16:33:38 -040042};
43
44#endif // UTILS_H