shell32: Add a stub implementation for SHIsFileAvailableOffline.
This commit is contained in:
parent
6cff43fd72
commit
ca9f266ac0
|
@ -86,6 +86,12 @@ BOOL WINAPI SHELL_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst,
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
HRESULT WINAPI SHIsFileAvailableOffline(LPCWSTR path, LPDWORD status)
|
||||
{
|
||||
FIXME("(%s, %p) stub\n", debugstr_w(path), status);
|
||||
return E_FAIL;
|
||||
}
|
||||
|
||||
/*************************************************************************
|
||||
* DragAcceptFiles [SHELL.9]
|
||||
*/
|
||||
|
|
|
@ -359,7 +359,7 @@
|
|||
@ stdcall SHHelpShortcuts_RunDLLW(long long long long)
|
||||
@ stub SHInvokePrinterCommandA
|
||||
@ stub SHInvokePrinterCommandW
|
||||
@ stub SHIsFileAvailableOffline
|
||||
@ stdcall SHIsFileAvailableOffline(wstr ptr)
|
||||
@ stdcall SHLoadInProc(long)
|
||||
@ stub SHLoadNonloadedIconOverlayIdentifiers
|
||||
@ stub SHPathPrepareForWriteA
|
||||
|
|
Loading…
Reference in New Issue