shlwapi: Add a stub for SHSetDefaultDialogFont.
This commit is contained in:
parent
c51be54c79
commit
3a2dfbd4e4
|
@ -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]
|
||||
*
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue