dwmapi: Added DwmAttachMilContent() and DwmDetachMilContent() stubs.
This commit is contained in:
parent
537febf2e8
commit
fb36148f47
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue