Commit 3a0e472a authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

svchost: Add a FIXME for an undocumented function (SvchostPushServiceGlobals)…

svchost: Add a FIXME for an undocumented function (SvchostPushServiceGlobals) that some native services expect to be called by native svchost.
parent d84f0abb
......@@ -229,6 +229,12 @@ static BOOL AddServiceElem(LPWSTR service_name,
goto cleanup;
}
if (GetProcAddress(library, "SvchostPushServiceGlobals"))
{
WINE_FIXME("library %s expects undocumented SvchostPushServiceGlobals function to be called\n",
wine_dbgstr_w(dll_name_long));
}
/* Fill in the service table entry */
service_table_entry->lpServiceName = service_name;
service_table_entry->lpServiceProc = service_main_func;
......
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