Module: wine Branch: master Commit: 9871dc07669ede7fef30f07431f9577f760a4673 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9871dc07669ede7fef30f07431...
Author: Stefan Leichter Stefan.Leichter@camLine.com Date: Fri Jan 9 12:26:40 2009 +0100
shell32: Add stub for ordinal 526.
---
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 b4761c6..a3d76ac 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -231,6 +231,7 @@ 523 stdcall -noname SHFreeShared(long long) 524 stdcall -noname RealDriveType(long long) 525 stub RealDriveTypeFlags + 526 stdcall @() SHELL32_526
640 stdcall -noname NTSHChangeNotifyRegister(long long long long long long) 641 stdcall -noname NTSHChangeNotifyDeregister(long) diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c index 7893445..2b7103c 100644 --- a/dlls/shell32/shellord.c +++ b/dlls/shell32/shellord.c @@ -1992,3 +1992,12 @@ BOOL WINAPI LinkWindow_UnregisterClass(void) FIXME("()\n"); return TRUE; } + +/************************************************************************* + * (SHELL32.526) + */ +BOOL WINAPI SHELL32_526(void) +{ + FIXME("()\n"); + return FALSE; +}