Module: wine Branch: master Commit: ac8c6a526f107fdda3da46ca841c0eb77d099415 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ac8c6a526f107fdda3da46ca84...
Author: Stefan Leichter Stefan.Leichter@camline.com Date: Sat May 2 09:51:53 2009 +0200
shell32: Stub for ExtractVersionResource16W.
---
dlls/shell32/shell32.spec | 2 +- dlls/shell32/shell32_main.c | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index b3fc762..9c4e1ed 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -298,7 +298,7 @@ @ stub ExtractIconResInfoA @ stub ExtractIconResInfoW @ stdcall ExtractIconW(long wstr long) -@ stub ExtractVersionResource16W +@ stdcall ExtractVersionResource16W(wstr long) @ stub FindExeDlgProc @ stdcall FindExecutableA(str str ptr) @ stdcall FindExecutableW(wstr wstr ptr) diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index ee62b9c..5706d50 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -1194,3 +1194,12 @@ HRESULT WINAPI DllCanUnloadNow(void) FIXME("stub\n"); return S_FALSE; } + +/*********************************************************************** + * ExtractVersionResource16W (SHELL32.@) + */ +BOOL WINAPI ExtractVersionResource16W(LPWSTR s, DWORD d) +{ + FIXME("(%s %x) stub!\n", debugstr_w(s), d); + return FALSE; +}