mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[SHELL32]
* Properly stub CheckStagingArea which is used by native explorer svn path=/trunk/; revision=65771
This commit is contained in:
parent
710258ad83
commit
0727e3b95a
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -1395,3 +1395,10 @@ SHGetUserSessionId(HANDLE hHandle)
|
|||
FIXME("SHGetUserSessionId() stub\n");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
EXTERN_C
|
||||
DWORD WINAPI CheckStagingArea(VOID)
|
||||
{
|
||||
/* Called by native explorer */
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue