Example #1
0
        public AutoHotkeyEngine()
        {
            Util.EnsureAutoHotkeyLoaded();

            //ensure that a thread is started
            AutoHotkeyDll.ahktextdll("", "", "");
        }
Example #2
0
 public AutoHotkeyEngine()
 {
     using (new CurrentDirectorySaver()) {
         Util.AutoHotkeyDllLoader.EnsureDllIsLoaded();
         AutoHotkeyDll.ahktextdll("", "", "");
     }
 }
Example #3
0
 public void Reset()
 {
     using (new CurrentDirectorySaver()) {
         Terminate();
         AutoHotkeyDll.ahkReload();
         AutoHotkeyDll.ahktextdll("", "", "");
     }
 }
 private AutoHotkeyEngine()
 {
     Util.AutoHotkeyDllLoader.EnsureDllIsLoaded();
     AutoHotkeyDll.ahktextdll("", "", "");
 }
 public void Reset()
 {
     Terminate();
     AutoHotkeyDll.ahkReload();
     AutoHotkeyDll.ahktextdll("", "", "");
 }