Author: gadamopoulos Date: Sat Dec 20 18:06:42 2014 New Revision: 65771
URL: http://svn.reactos.org/svn/reactos?rev=65771&view=rev Log: [SHELL32] * Properly stub CheckStagingArea which is used by native explorer
Modified: trunk/reactos/dll/win32/shell32/shell32.spec trunk/reactos/dll/win32/shell32/stubs.cpp
Modified: trunk/reactos/dll/win32/shell32/shell32.spec URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shell32.s... ============================================================================== --- trunk/reactos/dll/win32/shell32/shell32.spec [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/shell32.spec [iso-8859-1] Sat Dec 20 18:06:42 2014 @@ -460,7 +460,7 @@ 750 stub SHGetAttributesFromDataObject 751 stub -noname SHSimulateDropOnClsid 752 stub -noname SHGetComputerDisplayNameW -753 stub -noname CheckStagingArea +753 stdcall -noname CheckStagingArea() 754 stub -noname SHLimitInputEditWithFlags 755 stdcall -noname PathIsEqualOrSubFolder(wstr wstr) 756 stub -noname DeleteFileThumbnail
Modified: trunk/reactos/dll/win32/shell32/stubs.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/stubs.cpp... ============================================================================== --- trunk/reactos/dll/win32/shell32/stubs.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/stubs.cpp [iso-8859-1] Sat Dec 20 18:06:42 2014 @@ -1395,3 +1395,10 @@ FIXME("SHGetUserSessionId() stub\n"); return NULL; } + +EXTERN_C +DWORD WINAPI CheckStagingArea(VOID) +{ + /* Called by native explorer */ + return 0; +}