sl@0:
sl@0: using System.Windows.Forms;
sl@0:
sl@0: namespace GenericHid
sl@0: {
sl@0: ///
sl@0: /// Runs the application and provides access to the instance of the form.
sl@0: ///
sl@0:
sl@0: public class GenericHid
sl@0: {
sl@0: internal static FrmMain FrmMy;
sl@0:
sl@0: ///
sl@0: /// Displays the application's main form.
sl@0: ///
sl@0:
sl@0: public static void Main()
sl@0: {
sl@0: FrmMy = new FrmMain();
sl@0: Application.Run(FrmMy);
sl@0: }
sl@0: }
sl@0: }