Rob Shearman : shell32: Add a stub for LinkWindow_RegisterClass.
Module: wine Branch: master Commit: 6ae22de432e1fbaf1e290a4a595fdcf102bf6499 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6ae22de432e1fbaf1e290a4a59... Author: Rob Shearman <rob(a)codeweavers.com> Date: Sat Nov 17 17:33:12 2007 +0000 shell32: Add a stub for LinkWindow_RegisterClass. --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shellord.c | 9 +++++++++ 2 files changed, 10 insertions(+), 0 deletions(-) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 6928538..3c7fa74 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -210,6 +210,7 @@ 250 stdcall -noname PathRemoveExtension(ptr) PathRemoveExtensionAW 251 stdcall -noname PathRemoveArgs(ptr) PathRemoveArgsAW 256 stdcall @(ptr ptr) SHELL32_256 + 258 stdcall -noname LinkWindow_RegisterClass() #299 stub Shl1632_ThunkData32 #300 stub Shl3216_ThunkData32 diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 57d6b82..87f8c02 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -1957,3 +1957,12 @@ HRESULT WINAPI SHSetLocalizedName(LPWSTR pszPath, LPCWSTR pszResModule, int idsR return S_OK; } + +/************************************************************************* + * LinkWindow_RegisterClass (SHELL32.258) + */ +BOOL WINAPI LinkWindow_RegisterClass(void) +{ + FIXME("()\n"); + return TRUE; +}
participants (1)
-
Alexandre Julliard