Module: wine Branch: refs/heads/master Commit: 0eb07db3b6cb34c9638e8112a24bf94de4f96005 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=0eb07db3b6cb34c9638e8112...
Author: Pierre d'Herbemont pdherbemont@free.fr Date: Fri Jul 7 14:38:18 2006 +0200
shell: Move SHIsFileAvailableOffline from shell.c to shlfileop.c to ensure the 16/32 bits separation.
---
dlls/shell32/shell.c | 6 ------ dlls/shell32/shlfileop.c | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/shell32/shell.c b/dlls/shell32/shell.c index c8a78f8..533ccdb 100644 --- a/dlls/shell32/shell.c +++ b/dlls/shell32/shell.c @@ -86,12 +86,6 @@ BOOL WINAPI SHELL_DllEntryPoint(DWORD Re return TRUE; }
-HRESULT WINAPI SHIsFileAvailableOffline(LPCWSTR path, LPDWORD status) -{ - FIXME("(%s, %p) stub\n", debugstr_w(path), status); - return E_FAIL; -} - /************************************************************************* * DragAcceptFiles [SHELL.9] */ diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 49fa995..977e301 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -151,6 +151,12 @@ static void SHELL32_FreeUnicodeBuf(LPWST 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] *