Commit fb36148f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

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

parent 537febf2
......@@ -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)
......
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment