mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +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
|
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
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue