dwmapi: Added DwmAttachMilContent() and DwmDetachMilContent() stubs.

This commit is contained in:
Nikolay Sivov 2014-10-07 14:57:15 +04:00 committed by Alexandre Julliard
parent 537febf2e8
commit fb36148f47
2 changed files with 20 additions and 2 deletions

View file

@ -20,9 +20,9 @@
119 stub @
120 stub @
@ stub DwmAttachMilContent
@ stdcall DwmAttachMilContent(long)
@ stdcall DwmDefWindowProc(long long long long ptr)
@ stub DwmDetachMilContent
@ stdcall DwmDetachMilContent(long)
@ stdcall DwmEnableBlurBehindWindow(ptr ptr)
@ stdcall DwmEnableMMCSS(long)
@ stdcall DwmExtendFrameIntoClientArea(long ptr)

View file

@ -234,3 +234,21 @@ HRESULT WINAPI DwmGetCompositionTimingInfo(HWND hwnd, DWM_TIMING_INFO *info)
return E_NOTIMPL;
}
/**********************************************************************
* DwmAttachMilContent (DWMAPI.@)
*/
HRESULT WINAPI DwmAttachMilContent(HWND hwnd)
{
FIXME("(%p) stub\n", hwnd);
return E_NOTIMPL;
}
/**********************************************************************
* DwmDetachMilContent (DWMAPI.@)
*/
HRESULT WINAPI DwmDetachMilContent(HWND hwnd)
{
FIXME("(%p) stub\n", hwnd);
return E_NOTIMPL;
}