Commit e2283db4 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

advapi32: Only show NotifyServiceStatusChangeW FIXME once.

parent d7cc4f2c
......@@ -2427,8 +2427,9 @@ DWORD WINAPI NotifyServiceStatusChangeW(SC_HANDLE hService, DWORD dwNotifyMask,
DWORD dummy;
BOOL ret;
SERVICE_STATUS_PROCESS st;
static int once;
FIXME("%p 0x%x %p - semi-stub\n", hService, dwNotifyMask, pNotifyBuffer);
if (!once++) FIXME("%p 0x%x %p - semi-stub\n", hService, dwNotifyMask, pNotifyBuffer);
ret = QueryServiceStatusEx(hService, SC_STATUS_PROCESS_INFO, (void*)&st, sizeof(st), &dummy);
if (ret)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment