mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 22:32:58 +00:00
[DWMAPI]
* Sync with Wine 1.7.27. CORE-8540 svn path=/trunk/; revision=64337
This commit is contained in:
parent
ddb035e8bb
commit
c070855199
3 changed files with 14 additions and 1 deletions
|
@ -33,6 +33,7 @@
|
||||||
@ stdcall DwmGetGraphicsStreamTransformHint(long ptr)
|
@ stdcall DwmGetGraphicsStreamTransformHint(long ptr)
|
||||||
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
|
||||||
@ stdcall DwmGetWindowAttribute(ptr long ptr long)
|
@ stdcall DwmGetWindowAttribute(ptr long ptr long)
|
||||||
|
@ stdcall DwmInvalidateIconicBitmaps(ptr)
|
||||||
@ stdcall DwmIsCompositionEnabled(ptr)
|
@ stdcall DwmIsCompositionEnabled(ptr)
|
||||||
@ stub DwmModifyPreviousDxFrameDuration
|
@ stub DwmModifyPreviousDxFrameDuration
|
||||||
@ stub DwmQueryThumbnailSourceSize
|
@ stub DwmQueryThumbnailSourceSize
|
||||||
|
|
|
@ -111,6 +111,18 @@ HRESULT WINAPI DwmFlush(void)
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**********************************************************************
|
||||||
|
* DwmInvalidateIconicBitmaps (DWMAPI.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI DwmInvalidateIconicBitmaps(HWND hwnd)
|
||||||
|
{
|
||||||
|
static BOOL once;
|
||||||
|
|
||||||
|
if (!once++) FIXME("(%p) stub\n", hwnd);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* DwmSetWindowAttribute (DWMAPI.@)
|
* DwmSetWindowAttribute (DWMAPI.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -71,7 +71,7 @@ reactos/dll/win32/cryptnet # Synced to Wine-1.7.27
|
||||||
reactos/dll/win32/cryptui # Synced to Wine-1.7.27
|
reactos/dll/win32/cryptui # Synced to Wine-1.7.27
|
||||||
reactos/dll/win32/dbghelp # Synced to Wine-1.7.27
|
reactos/dll/win32/dbghelp # Synced to Wine-1.7.27
|
||||||
reactos/dll/win32/dciman32 # Synced to Wine-1.7.27
|
reactos/dll/win32/dciman32 # Synced to Wine-1.7.27
|
||||||
reactos/dll/win32/dwmapi # Synced to Wine-1.7.17
|
reactos/dll/win32/dwmapi # Synced to Wine-1.7.27
|
||||||
reactos/dll/win32/faultrep # Synced to Wine-1.7.17
|
reactos/dll/win32/faultrep # Synced to Wine-1.7.17
|
||||||
reactos/dll/win32/fltlib # Synced to Wine-1.7.27
|
reactos/dll/win32/fltlib # Synced to Wine-1.7.27
|
||||||
reactos/dll/win32/fusion # Synced to Wine-1.7.17
|
reactos/dll/win32/fusion # Synced to Wine-1.7.17
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue