Commit 0eb07db3 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont Committed by Alexandre Julliard

shell: Move SHIsFileAvailableOffline from shell.c to shlfileop.c to

ensure the 16/32 bits separation.
parent 2c38a7d5
...@@ -86,12 +86,6 @@ BOOL WINAPI SHELL_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst, ...@@ -86,12 +86,6 @@ BOOL WINAPI SHELL_DllEntryPoint(DWORD Reason, HINSTANCE16 hInst,
return TRUE; return TRUE;
} }
HRESULT WINAPI SHIsFileAvailableOffline(LPCWSTR path, LPDWORD status)
{
FIXME("(%s, %p) stub\n", debugstr_w(path), status);
return E_FAIL;
}
/************************************************************************* /*************************************************************************
* DragAcceptFiles [SHELL.9] * DragAcceptFiles [SHELL.9]
*/ */
......
...@@ -151,6 +151,12 @@ static void SHELL32_FreeUnicodeBuf(LPWSTR wPath) ...@@ -151,6 +151,12 @@ static void SHELL32_FreeUnicodeBuf(LPWSTR wPath)
HeapFree(GetProcessHeap(), 0, wPath); HeapFree(GetProcessHeap(), 0, wPath);
} }
HRESULT WINAPI SHIsFileAvailableOffline(LPCWSTR path, LPDWORD status)
{
FIXME("(%s, %p) stub\n", debugstr_w(path), status);
return E_FAIL;
}
/************************************************************************** /**************************************************************************
* SHELL_DeleteDirectory() [internal] * SHELL_DeleteDirectory() [internal]
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment