Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
cf4404cf
Commit
cf4404cf
authored
Aug 09, 2014
by
Erich E. Hoover
Committed by
Alexandre Julliard
Aug 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwmapi: Add stub for DwmInvalidateIconicBitmaps.
parent
8f9df3af
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
dwmapi.spec
dlls/dwmapi/dwmapi.spec
+1
-0
dwmapi_main.c
dlls/dwmapi/dwmapi_main.c
+12
-0
dwmapi.h
include/dwmapi.h
+1
-0
No files found.
dlls/dwmapi/dwmapi.spec
View file @
cf4404cf
...
...
@@ -33,6 +33,7 @@
@ stdcall DwmGetGraphicsStreamTransformHint(long ptr)
@ stdcall DwmGetTransportAttributes(ptr ptr ptr)
@ stdcall DwmGetWindowAttribute(ptr long ptr long)
@ stdcall DwmInvalidateIconicBitmaps(ptr)
@ stdcall DwmIsCompositionEnabled(ptr)
@ stub DwmModifyPreviousDxFrameDuration
@ stub DwmQueryThumbnailSourceSize
...
...
dlls/dwmapi/dwmapi_main.c
View file @
cf4404cf
...
...
@@ -108,6 +108,18 @@ HRESULT WINAPI DwmFlush(void)
}
/**********************************************************************
* DwmInvalidateIconicBitmaps (DWMAPI.@)
*/
HRESULT
WINAPI
DwmInvalidateIconicBitmaps
(
HWND
hwnd
)
{
static
BOOL
once
;
if
(
!
once
++
)
FIXME
(
"(%p) stub
\n
"
,
hwnd
);
return
E_NOTIMPL
;
}
/**********************************************************************
* DwmSetWindowAttribute (DWMAPI.@)
*/
HRESULT
WINAPI
DwmSetWindowAttribute
(
HWND
hwnd
,
DWORD
attributenum
,
LPCVOID
attribute
,
DWORD
size
)
...
...
include/dwmapi.h
View file @
cf4404cf
...
...
@@ -116,6 +116,7 @@ DWMAPI DwmEnableMMCSS(BOOL);
DWMAPI
DwmExtendFrameIntoClientArea
(
HWND
,
const
MARGINS
*
);
DWMAPI
DwmGetColorizationColor
(
DWORD
*
,
BOOL
);
DWMAPI
DwmGetCompositionTimingInfo
(
HWND
,
DWM_TIMING_INFO
*
);
DWMAPI
DwmInvalidateIconicBitmaps
(
HWND
);
DWMAPI
DwmIsCompositionEnabled
(
BOOL
*
);
DWMAPI
DwmRegisterThumbnail
(
HWND
,
HWND
,
PHTHUMBNAIL
);
DWMAPI
DwmSetWindowAttribute
(
HWND
,
DWORD
,
LPCVOID
,
DWORD
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment