summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Constants.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2013-03-20 20:35:48 +0000
committersr55 <[email protected]>2013-03-20 20:35:48 +0000
commit285a71750a2c3fcb5c34d3fbf28e5105c03d7b9a (patch)
treec5c6bac2cc4eaa3a8edc52b7b4ec8e47cf229480 /win/CS/HandBrakeWPF/Constants.cs
parent97a88523f2b6352847d705cbf527fd5ee0f5247b (diff)
WinGui: Appcast related fixes and tidyup.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5351 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Constants.cs')
-rw-r--r--win/CS/HandBrakeWPF/Constants.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Constants.cs b/win/CS/HandBrakeWPF/Constants.cs
new file mode 100644
index 000000000..862f08011
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Constants.cs
@@ -0,0 +1,27 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="Constants.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Application Constants
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF
+{
+ /// <summary>
+ /// Application Constants
+ /// </summary>
+ public class Constants
+ {
+ /// <summary>
+ /// The appcast 64.
+ /// </summary>
+ public const string Appcast64 = "http://handbrake.fr/appcast.x86_64.xml";
+
+ /// <summary>
+ /// The appcast 32.
+ /// </summary>
+ public const string Appcast32 = "http://handbrake.fr/appcast.i386.xml";
+ }
+}