dwmapi: Add a few stub implementations.
This commit is contained in:
parent
2a55b8d8e7
commit
a8790e55fd
|
@ -25,9 +25,9 @@
|
|||
@ stub DwmDetachMilContent
|
||||
@ stub DwmEnableBlurBehindWindow
|
||||
@ stub DwmEnableMMCSS
|
||||
@ stub DwmExtendFrameIntoClientArea
|
||||
@ stub DwmFlush
|
||||
@ stub DwmGetColorizationColor
|
||||
@ stdcall DwmExtendFrameIntoClientArea(long ptr)
|
||||
@ stdcall DwmFlush()
|
||||
@ stdcall DwmGetColorizationColor(ptr long)
|
||||
@ stub DwmGetCompositionTimingInfo
|
||||
@ stub DwmGetGraphicsStreamClient
|
||||
@ stub DwmGetGraphicsStreamTransformHint
|
||||
|
|
|
@ -70,6 +70,36 @@ HRESULT WINAPI DwmEnableComposition(UINT uCompositionAction)
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmExtendFrameIntoClientArea (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmExtendFrameIntoClientArea(HWND hwnd, const MARGINS* margins)
|
||||
{
|
||||
FIXME("(%p, %p) stub\n", hwnd, margins);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmGetColorizationColor (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmGetColorizationColor(DWORD *colorization, BOOL opaque_blend)
|
||||
{
|
||||
FIXME("(%p, %d) stub\n", colorization, opaque_blend);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmFlush (DWMAPI.@)
|
||||
*/
|
||||
HRESULT WINAPI DwmFlush()
|
||||
{
|
||||
FIXME("() stub\n");
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
/**********************************************************************
|
||||
* DwmSetWindowAttribute (DWMAPI.@)
|
||||
*/
|
||||
|
|
|
@ -32,6 +32,8 @@ extern "C" {
|
|||
DECLARE_HANDLE(HTHUMBNAIL);
|
||||
|
||||
DWMAPI DwmEnableComposition(UINT);
|
||||
DWMAPI DwmExtendFrameIntoClientArea(HWND,const MARGINS*);
|
||||
DWMAPI DwmGetColorizationColor(DWORD*,BOOL);
|
||||
DWMAPI DwmIsCompositionEnabled(BOOL*);
|
||||
DWMAPI DwmSetWindowAttribute(HWND, DWORD, LPCVOID, DWORD);
|
||||
DWMAPI DwmUnregisterThumbnail(HTHUMBNAIL);
|
||||
|
|
Loading…
Reference in New Issue