removed some comments

This commit is contained in:
David
2019-02-10 00:45:52 +01:00
committed by GitHub
parent 4c76eb7a82
commit 9151b649b5

View File

@@ -3,13 +3,13 @@
#AutoIt3Wrapper_Res_Fileversion=0.0.1.0 #AutoIt3Wrapper_Res_Fileversion=0.0.1.0
#include <AutoItConstants.au3> #include <AutoItConstants.au3>
#include <TrayConstants.au3>; #include <TrayConstants.au3>
#include <MsgBoxConstants.au3> #include <MsgBoxConstants.au3>
#include "_ProcessListProperties.au3" #include "_ProcessListProperties.au3"
Opt("TrayMenuMode", 3); Opt("TrayMenuMode", 3)
Global Const $iconFile = "shell32.dll"; Global Const $iconFile = "shell32.dll"
Global Const $idIconError = -110 Global Const $idIconError = -110
Global Const $idIconRunning = -138 Global Const $idIconRunning = -138
Global Const $idIconPaused = -245 Global Const $idIconPaused = -245
@@ -190,7 +190,6 @@ Func InstallTask()
EndFunc EndFunc
Func UninstallTask() Func UninstallTask()
;RunWait('schtasks.exe /End /TN ' & $sTaskFullName, '', @SW_HIDE)
If RunWait('schtasks.exe /Delete /F /TN ' & $sTaskFullName, '', @SW_HIDE) <> 0 Then Return False If RunWait('schtasks.exe /Delete /F /TN ' & $sTaskFullName, '', @SW_HIDE) <> 0 Then Return False
Return True Return True
EndFunc EndFunc