shlwapi: Add a stub for SHSetDefaultDialogFont.

This commit is contained in:
Detlef Riekenberg 2008-09-09 23:04:14 +02:00 committed by Alexandre Julliard
parent c51be54c79
commit 3a2dfbd4e4
2 changed files with 20 additions and 1 deletions

View File

@ -2260,6 +2260,25 @@ HRESULT WINAPI QISearch(
return ret;
}
/*************************************************************************
* @ [SHLWAPI.220]
*
* Set the Font for a window and the "PropDlgFont" property of the parent window.
*
* PARAMS
* hWnd [I] Parent Window to set the property
* id [I] Index of child Window to set the Font
*
* RETURNS
* Success: S_OK
*
*/
HRESULT WINAPI SHSetDefaultDialogFont(HWND hWnd, INT id)
{
FIXME("(%p, %d) stub\n", hWnd, id);
return S_OK;
}
/*************************************************************************
* @ [SHLWAPI.221]
*

View File

@ -217,7 +217,7 @@
217 stdcall -noname SHUnicodeToAnsi(wstr ptr ptr)
218 stdcall -noname SHUnicodeToAnsiCP(long wstr ptr ptr)
219 stdcall -noname QISearch(long long long long)
220 stub -noname SHSetDefaultDialogFont
220 stdcall -noname SHSetDefaultDialogFont(ptr long)
221 stdcall -noname SHRemoveDefaultDialogFont(ptr)
222 stdcall -noname SHGlobalCounterCreate(long)
223 stdcall -noname SHGlobalCounterGetValue(long)