Beispiel #1
0
 private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     if (SysCaller.IsHooking())
     {
         SysCaller.UnHook();
     }
 }
Beispiel #2
0
        private void UnBind_Click(object s, EventArgs e)
        {
            if (!SysCaller.IsHooking())
            {
                return;
            }

            StatusLabel.Text = @"フック ( 未 )";
            SysCaller.UnHook();
        }
Beispiel #3
0
        private void Init()
        {
            string path = System.Reflection.Assembly.GetExecutingAssembly().Location;

            m = new Maneuver(System.IO.Path.GetDirectoryName(path) + @"\Setting.xml");

            SysCaller.Init();
            SysCaller.SetManeuver(m);

            StatusLabel.Text = @"フック ( 未 )";
        }