1 | /* smplayer, GUI front-end for mplayer.
|
---|
2 | Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
|
---|
3 |
|
---|
4 | This program is free software; you can redistribute it and/or modify
|
---|
5 | it under the terms of the GNU General Public License as published by
|
---|
6 | the Free Software Foundation; either version 2 of the License, or
|
---|
7 | (at your option) any later version.
|
---|
8 |
|
---|
9 | This program is distributed in the hope that it will be useful,
|
---|
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
12 | GNU General Public License for more details.
|
---|
13 |
|
---|
14 | You should have received a copy of the GNU General Public License
|
---|
15 | along with this program; if not, write to the Free Software
|
---|
16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef LINKS_H
|
---|
20 | #define LINKS_H
|
---|
21 |
|
---|
22 | #define URL_HOMEPAGE "http://www.smplayer.info"
|
---|
23 | #define URL_FORUM "http://forum.smplayer.info"
|
---|
24 | #define URL_TRANSLATORS URL_HOMEPAGE"/translators.php"
|
---|
25 | #define URL_FIRST_STEPS URL_HOMEPAGE"/first-steps.php"
|
---|
26 | #define URL_FAQ URL_HOMEPAGE"/faq.php"
|
---|
27 | #define URL_CHANGES URL_HOMEPAGE"/changes.php"
|
---|
28 | #define URL_THANK_YOU URL_HOMEPAGE"/thank-you.php"
|
---|
29 | #define URL_OPENSSL_INFO URL_HOMEPAGE"/openssl.php"
|
---|
30 | #define URL_DONATE URL_HOMEPAGE"/donate.php"
|
---|
31 | #define URL_CHROMECAST "http://chromecast.smplayer.info"
|
---|
32 | #define URL_YT_CODE "http://updates.smplayer.info/yt.js"
|
---|
33 | #define URL_VERSION_INFO "http://updates.smplayer.info/version_info.ini"
|
---|
34 |
|
---|
35 | #endif
|
---|