[SHELL32]

* Properly stub CheckStagingArea which is used by native explorer

svn path=/trunk/; revision=65771
This commit is contained in:
Giannis Adamopoulos 2014-12-20 18:06:42 +00:00
parent 710258ad83
commit 0727e3b95a
2 changed files with 8 additions and 1 deletions

View file

@ -460,7 +460,7 @@
750 stub SHGetAttributesFromDataObject 750 stub SHGetAttributesFromDataObject
751 stub -noname SHSimulateDropOnClsid 751 stub -noname SHSimulateDropOnClsid
752 stub -noname SHGetComputerDisplayNameW 752 stub -noname SHGetComputerDisplayNameW
753 stub -noname CheckStagingArea 753 stdcall -noname CheckStagingArea()
754 stub -noname SHLimitInputEditWithFlags 754 stub -noname SHLimitInputEditWithFlags
755 stdcall -noname PathIsEqualOrSubFolder(wstr wstr) 755 stdcall -noname PathIsEqualOrSubFolder(wstr wstr)
756 stub -noname DeleteFileThumbnail 756 stub -noname DeleteFileThumbnail

View file

@ -1395,3 +1395,10 @@ SHGetUserSessionId(HANDLE hHandle)
FIXME("SHGetUserSessionId() stub\n"); FIXME("SHGetUserSessionId() stub\n");
return NULL; return NULL;
} }
EXTERN_C
DWORD WINAPI CheckStagingArea(VOID)
{
/* Called by native explorer */
return 0;
}