Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
e28d6b2f
Commit
e28d6b2f
authored
Sep 02, 2015
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwmapi: Add DwmUpdateThumbnailProperties stub.
parent
601aa570
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
dwmapi.spec
dlls/dwmapi/dwmapi.spec
+1
-1
dwmapi_main.c
dlls/dwmapi/dwmapi_main.c
+9
-0
dwmapi.h
include/dwmapi.h
+11
-0
No files found.
dlls/dwmapi/dwmapi.spec
View file @
e28d6b2f
...
...
@@ -42,4 +42,4 @@
@ stub DwmSetPresentParameters
@ stdcall DwmSetWindowAttribute(long long ptr long)
@ stdcall DwmUnregisterThumbnail(long)
@ st
ub DwmUpdateThumbnailProperties
@ st
dcall DwmUpdateThumbnailProperties(ptr ptr)
dlls/dwmapi/dwmapi_main.c
View file @
e28d6b2f
...
...
@@ -250,3 +250,12 @@ HRESULT WINAPI DwmDetachMilContent(HWND hwnd)
FIXME
(
"(%p) stub
\n
"
,
hwnd
);
return
E_NOTIMPL
;
}
/**********************************************************************
* DwmUpdateThumbnailProperties (DWMAPI.@)
*/
HRESULT
WINAPI
DwmUpdateThumbnailProperties
(
HTHUMBNAIL
thumbnail
,
const
DWM_THUMBNAIL_PROPERTIES
*
props
)
{
FIXME
(
"(%p, %p) stub
\n
"
,
thumbnail
,
props
);
return
E_NOTIMPL
;
}
include/dwmapi.h
View file @
e28d6b2f
...
...
@@ -107,6 +107,16 @@ typedef struct _DWM_BLURBEHIND
BOOL
fTransitionOnMaximized
;
}
DWM_BLURBEHIND
,
*
PDWM_BLURBEHIND
;
typedef
struct
_DWM_THUMBNAIL_PROPERTIES
{
DWORD
dwFlags
;
RECT
rcDestination
;
RECT
rcSource
;
BYTE
opacity
;
BOOL
fVisible
;
BOOL
fSourceClientAreaOnly
;
}
DWM_THUMBNAIL_PROPERTIES
,
*
PDWM_THUMBNAIL_PROPERTIES
;
#include <poppack.h>
DWMAPI
DwmDefWindowProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
LRESULT
*
);
...
...
@@ -121,6 +131,7 @@ DWMAPI DwmIsCompositionEnabled(BOOL*);
DWMAPI
DwmRegisterThumbnail
(
HWND
,
HWND
,
PHTHUMBNAIL
);
DWMAPI
DwmSetWindowAttribute
(
HWND
,
DWORD
,
LPCVOID
,
DWORD
);
DWMAPI
DwmUnregisterThumbnail
(
HTHUMBNAIL
);
DWMAPI
DwmUpdateThumbnailProperties
(
HTHUMBNAIL
,
const
DWM_THUMBNAIL_PROPERTIES
*
);
#ifdef __cplusplus
}
...
...
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