[SCHEDSVC] Add stubs for the wlnotify control codes

This commit is contained in:
Eric Kohl 2018-08-18 22:23:22 +02:00
parent 9a36ee8359
commit 0d13bb1015

View file

@ -106,6 +106,14 @@ ServiceControlHandler(DWORD dwControl,
&ServiceStatus);
return ERROR_SUCCESS;
case 128:
TRACE(" Start Shell contol received\n");
return ERROR_SUCCESS;
case 129:
TRACE(" Logoff control received\n");
return ERROR_SUCCESS;
default:
TRACE(" Control %lu received\n", dwControl);
return ERROR_CALL_NOT_IMPLEMENTED;