Skip to content
Snippets Groups Projects
Commit fb36148f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard
Browse files

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

parent 537febf2
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment