Esempio n. 1
0
        public MainForm()
        {
            InitializeComponent();

            server           = new HIO2Server();
            stringDictionary = new StringDictionary("../../../tp_dict.json"); // aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

            timer.Tick    += OnTimerTick;
            timer.Interval = 16;
            timer.Start();
        }
Esempio n. 2
0
File: HIO2.cs Progetto: magcius/mchi
 public HIO2ServerClient(HIO2Server server, string filename)
 {
     this.server   = server;
     this.file     = MemoryMappedFile.CreateOrOpen(filename, EXIUSB_SHM_SIZE);
     this.accessor = this.file.CreateViewAccessor();
 }
Esempio n. 3
0
 public JORManager()
 {
     server = new HIO2Server();
 }