From 6ed93bf82408e3a3c3ee918e0786e88e6cea8d22 Mon Sep 17 00:00:00 2001 From: Ken Sharp Date: Mon, 1 Jun 2009 08:51:50 +0100 Subject: [PATCH] shell32: Add stub for InitNetworkAddressControl. --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shell32_main.c | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 9c4e1edd80..9d4808fc49 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -304,6 +304,7 @@ @ stdcall FindExecutableW(wstr wstr ptr) @ stub FixupOptionalComponents @ stdcall FreeIconList(long) +@ stdcall InitNetworkAddressControl() @ stub InternalExtractIconListA @ stub InternalExtractIconListW @ stub OCInstall diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 6a4848f9dc..41c2d59b22 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -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; +} -- 2.32.0.93.g670b81a890