Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1.  
  2. // GaGa.
  3. // A minimal radio player for the Windows Tray.
  4.  
  5.  
  6. using System;
  7. using System.IO;
  8. using System.Windows.Forms;
  9.  
  10.  
  11. namespace GaGa
  12. {
  13. internal class Program
  14. {
  15. /// <summary>
  16. /// The main entry point for the application.
  17. /// </summary>
  18. [STAThread]
  19. private static void Main()
  20. {
  21. // use an streams.ini file located in the same folder as the executable:
  22. String streamsFilePath = Path.Combine(Utils.ApplicationFolder, "streams.ini");
  23.  
  24. Application.EnableVisualStyles();
  25. Application.SetCompatibleTextRenderingDefault(false);
  26. Application.Run(new GaGa(streamsFilePath));
  27. }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement