update start/stop task from windows service

This commit is contained in:
vfedosevich 2013-05-23 18:18:25 +03:00
parent 8577c73c4c
commit d14b5fc01f
16 changed files with 240 additions and 93 deletions

View file

@ -3,6 +3,8 @@
public enum BackgroundTaskStatus
{
Run = 1,
Abort = 2
Abort = 2,
Starting = 3,
Stopping = 4
}
}