Commit 7236452d authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

shell32: Implement UnixFolder_IShellFolder2_GetDefaultColumn.

parent 44380929
...@@ -1273,8 +1273,14 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_EnumSearches(IShellFolder2* iface ...@@ -1273,8 +1273,14 @@ static HRESULT WINAPI UnixFolder_IShellFolder2_EnumSearches(IShellFolder2* iface
static HRESULT WINAPI UnixFolder_IShellFolder2_GetDefaultColumn(IShellFolder2* iface, static HRESULT WINAPI UnixFolder_IShellFolder2_GetDefaultColumn(IShellFolder2* iface,
DWORD dwReserved, ULONG *pSort, ULONG *pDisplay) DWORD dwReserved, ULONG *pSort, ULONG *pDisplay)
{ {
FIXME("stub\n"); TRACE("(iface=%p,dwReserved=%x,pSort=%p,pDisplay=%p)\n", iface, dwReserved, pSort, pDisplay);
return E_NOTIMPL;
if (pSort)
*pSort = 0;
if (pDisplay)
*pDisplay = 0;
return S_OK;
} }
static HRESULT WINAPI UnixFolder_IShellFolder2_GetDefaultColumnState(IShellFolder2* iface, static HRESULT WINAPI UnixFolder_IShellFolder2_GetDefaultColumnState(IShellFolder2* iface,
......
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