diff options
author | sr55 <[email protected]> | 2007-12-24 18:43:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2007-12-24 18:43:10 +0000 |
commit | 9de854ea647f370c31bf3919a6c7377b317ea19f (patch) | |
tree | 1a4601df447243ee8d5d2b434656a4b163add1e5 /win/C#/Program.cs | |
parent | 1b2e8b83a825a53accf571a11dada26f9a1de774 (diff) |
WinGui:
- Added GPL Licence comment at the top of each code file as required. (this may need to be changed later but will do for now)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1147 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Program.cs')
-rw-r--r-- | win/C#/Program.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/win/C#/Program.cs b/win/C#/Program.cs index e764a1c29..ab485c16f 100644 --- a/win/C#/Program.cs +++ b/win/C#/Program.cs @@ -1,3 +1,9 @@ +/* Program.cs
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.m0k.org/>.
+ It may be used under the terms of the GNU General Public License. */
+
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
@@ -24,6 +30,16 @@ namespace Handbrake static void Main()
{
+ // Development Code Expiry.
+ // Remember to comment out on public release!!!
+ int year = DateTime.Now.Year;
+ int month = DateTime.Now.Month;
+ int day = DateTime.Now.Day;
+
+ if ((year > 2007) || (month > 10 )) { MessageBox.Show("Sorry, This development build of Handbrake has expired."); return; }
+
+
+
// Check the system meets the system requirements.
Boolean launch = true;
try
|