shell32: Add stub for ordinal 526.

This commit is contained in:
Stefan Leichter 2009-01-09 12:26:40 +01:00 committed by Alexandre Julliard
parent bb829372f1
commit 9871dc0766
2 changed files with 10 additions and 0 deletions

View File

@ -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)

View File

@ -1992,3 +1992,12 @@ BOOL WINAPI LinkWindow_UnregisterClass(void)
FIXME("()\n");
return TRUE;
}
/*************************************************************************
* (SHELL32.526)
*/
BOOL WINAPI SHELL32_526(void)
{
FIXME("()\n");
return FALSE;
}