shell32: Implement UnixFolder_IShellFolder2_GetDefaultColumn.

This commit is contained in:
Vincent Povirk 2009-02-13 17:07:32 -06:00 committed by Alexandre Julliard
parent 4438092960
commit 7236452df8
1 changed files with 8 additions and 2 deletions

View File

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