I have a callback operation where I am tripping a quit operation. But the installer does not quit:
Function CancelNotification
GetFunctionAddress $2 Exit
ThreadTimer::Start /NOUNLOAD 10 1 $2
FunctionEnd
Function Exit
Quit
FunctionEnd
I've tried calling quit in the CancelNotification callback operation - but still fails to quit the installer.
Peter
Function CancelNotification
GetFunctionAddress $2 Exit
ThreadTimer::Start /NOUNLOAD 10 1 $2
FunctionEnd
Function Exit
Quit
FunctionEnd
I've tried calling quit in the CancelNotification callback operation - but still fails to quit the installer.
Peter
Comment