Module: wine Branch: master Commit: 6ed93bf82408e3a3c3ee918e0786e88e6cea8d22 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6ed93bf82408e3a3c3ee918e07...
Author: Ken Sharp kennybobs@o2.co.uk Date: Mon Jun 1 08:51:50 2009 +0100
shell32: Add stub for InitNetworkAddressControl.
---
dlls/shell32/shell32.spec | 1 + dlls/shell32/shell32_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 9c4e1ed..9d4808f 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 6a4848f..41c2d59 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; +}