dwmapi: Add stub for DwmInvalidateIconicBitmaps.
This commit is contained in:
parent
8f9df3afde
commit
cf4404cfbb
|
@ -33,6 +33,7 @@
|
|||
@ stdcall DwmGetGraphicsStreamTransformHint(long ptr)
|
||||
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
||||
@ stdcall DwmGetWindowAttribute(ptr long ptr long)
|
||||
@ stdcall DwmInvalidateIconicBitmaps(ptr)
|
||||
@ stdcall DwmIsCompositionEnabled(ptr)
|
||||
@ stub DwmModifyPreviousDxFrameDuration
|
||||
@ stub DwmQueryThumbnailSourceSize
|
||||
|
|
|
@ -107,6 +107,18 @@ HRESULT WINAPI DwmFlush(void)
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmInvalidateIconicBitmaps (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmInvalidateIconicBitmaps(HWND hwnd)
|
||||
{
|
||||
static BOOL once;
|
||||
|
||||
if (!once++) FIXME("(%p) stub\n", hwnd);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmSetWindowAttribute (DWMAPI.@)
|
||||
*/
|
||||
|
|
|
@ -116,6 +116,7 @@ DWMAPI DwmEnableMMCSS(BOOL);
|
|||
DWMAPI DwmExtendFrameIntoClientArea(HWND,const MARGINS*);
|
||||
DWMAPI DwmGetColorizationColor(DWORD*,BOOL);
|
||||
DWMAPI DwmGetCompositionTimingInfo(HWND,DWM_TIMING_INFO*);
|
||||
DWMAPI DwmInvalidateIconicBitmaps(HWND);
|
||||
DWMAPI DwmIsCompositionEnabled(BOOL*);
|
||||
DWMAPI DwmRegisterThumbnail(HWND, HWND, PHTHUMBNAIL);
|
||||
DWMAPI DwmSetWindowAttribute(HWND, DWORD, LPCVOID, DWORD);
|
||||
|
|
Loading…
Reference in New Issue