From b15186d49c36e1f973f23ef957c2cfc906186f36 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Sat, 17 Nov 2007 17:33:44 +0000 Subject: [PATCH] shell32: Add a stub for LinkWindow_UnregisterClass. --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shellord.c | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 3c7fa749df6..044f4430f1f 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -211,6 +211,7 @@ 251 stdcall -noname PathRemoveArgs(ptr) PathRemoveArgsAW 256 stdcall @(ptr ptr) SHELL32_256 258 stdcall -noname LinkWindow_RegisterClass() + 259 stdcall -noname LinkWindow_UnregisterClass() #299 stub Shl1632_ThunkData32 #300 stub Shl3216_ThunkData32 diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 87f8c02a891..ed326eab0be 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -1966,3 +1966,12 @@ BOOL WINAPI LinkWindow_RegisterClass(void) FIXME("()\n"); return TRUE; } + +/************************************************************************* + * LinkWindow_UnregisterClass (SHELL32.259) + */ +BOOL WINAPI LinkWindow_UnregisterClass(void) +{ + FIXME("()\n"); + return TRUE; +} -- 2.11.4.GIT