shell32: Add stub for InitNetworkAddressControl.

This commit is contained in:
Ken Sharp 2009-06-01 08:51:50 +01:00 committed by Alexandre Julliard
parent 449a82866d
commit 6ed93bf824
2 changed files with 10 additions and 0 deletions

View File

@ -304,6 +304,7 @@
@ stdcall FindExecutableW(wstr wstr ptr)
@ stub FixupOptionalComponents
@ stdcall FreeIconList(long)
@ stdcall InitNetworkAddressControl()
@ stub InternalExtractIconListA
@ stub InternalExtractIconListW
@ stub OCInstall

View File

@ -1203,3 +1203,12 @@ BOOL WINAPI ExtractVersionResource16W(LPWSTR s, DWORD d)
FIXME("(%s %x) stub!\n", debugstr_w(s), d);
return FALSE;
}
/***********************************************************************
* InitNetworkAddressControl (SHELL32.@)
*/
BOOL WINAPI InitNetworkAddressControl(void)
{
FIXME("stub\n");
return FALSE;
}