mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
- Sync dwmapi with Wine head
svn path=/trunk/; revision=39262
This commit is contained in:
parent
79b2c29192
commit
9caa5c511f
2 changed files with 12 additions and 2 deletions
|
@ -24,7 +24,7 @@
|
|||
@ stub DwmDefWindowProc
|
||||
@ stub DwmDetachMilContent
|
||||
@ stub DwmEnableBlurBehindWindow
|
||||
@ stub DwmEnableMMCSS
|
||||
@ stdcall DwmEnableMMCSS(long)
|
||||
@ stdcall DwmExtendFrameIntoClientArea(long ptr)
|
||||
@ stdcall DwmFlush()
|
||||
@ stdcall DwmGetColorizationColor(ptr long)
|
||||
|
|
|
@ -93,7 +93,7 @@ HRESULT WINAPI DwmGetColorizationColor(DWORD *colorization, BOOL opaque_blend)
|
|||
/**********************************************************************
|
||||
* DwmFlush (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmFlush()
|
||||
HRESULT WINAPI DwmFlush(void)
|
||||
{
|
||||
FIXME("() stub\n");
|
||||
|
||||
|
@ -119,3 +119,13 @@ HRESULT WINAPI DwmUnregisterThumbnail(HTHUMBNAIL thumbnail)
|
|||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmEnableMMCSS (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmEnableMMCSS(BOOL enableMMCSS)
|
||||
{
|
||||
FIXME("(%d) stub\n", enableMMCSS);
|
||||
|
||||
return S_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue