diff options
author | Damien Lallement <dlallement@mandriva.com> | 2009-04-20 15:38:09 +0000 |
---|---|---|
committer | Damien Lallement <dlallement@mandriva.com> | 2009-04-20 15:38:09 +0000 |
commit | d4a95ff6baea8712565fba8a560289e4b3838922 (patch) | |
tree | b8f9cf6ee44c90f3ef3209f8ba56ff9ccc40ccaf /Mandriva - Autorun CD-DVD/Program.cs | |
parent | 0abcc628875e7e38aa135c023eb00aa8b3aab313 (diff) | |
download | autorun-d4a95ff6baea8712565fba8a560289e4b3838922.tar autorun-d4a95ff6baea8712565fba8a560289e4b3838922.tar.gz autorun-d4a95ff6baea8712565fba8a560289e4b3838922.tar.bz2 autorun-d4a95ff6baea8712565fba8a560289e4b3838922.tar.xz autorun-d4a95ff6baea8712565fba8a560289e4b3838922.zip |
add autorun
Diffstat (limited to 'Mandriva - Autorun CD-DVD/Program.cs')
-rwxr-xr-x | Mandriva - Autorun CD-DVD/Program.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Mandriva - Autorun CD-DVD/Program.cs b/Mandriva - Autorun CD-DVD/Program.cs new file mode 100755 index 0000000..141c06e --- /dev/null +++ b/Mandriva - Autorun CD-DVD/Program.cs @@ -0,0 +1,21 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Windows.Forms;
+
+namespace autorun
+{
+ static class Program
+ {
+ /// <summary>
+ /// The main entry point for the application.
+ /// </summary>
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new autorunForm());
+ }
+ }
+}
|