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
e158bb0b
Commit
e158bb0b
authored
Jul 23, 2010
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwmapi: Add stub DwmEnableBlurBehindWindow.
parent
841153aa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
dwmapi.spec
dlls/dwmapi/dwmapi.spec
+1
-1
dwmapi_main.c
dlls/dwmapi/dwmapi_main.c
+10
-0
dwmapi.h
include/dwmapi.h
+13
-0
No files found.
dlls/dwmapi/dwmapi.spec
View file @
e158bb0b
...
...
@@ -23,7 +23,7 @@
@ stub DwmAttachMilContent
@ stub DwmDefWindowProc
@ stub DwmDetachMilContent
@ st
ub DwmEnableBlurBehindWindow
@ st
dcall DwmEnableBlurBehindWindow(ptr ptr)
@ stdcall DwmEnableMMCSS(long)
@ stdcall DwmExtendFrameIntoClientArea(long ptr)
@ stdcall DwmFlush()
...
...
dlls/dwmapi/dwmapi_main.c
View file @
e158bb0b
...
...
@@ -166,3 +166,13 @@ HRESULT WINAPI DwmGetGraphicsStreamTransformHint(UINT uIndex, MilMatrix3x2D *pTr
return
E_NOTIMPL
;
}
/**********************************************************************
* DwmEnableBlurBehindWindow (DWMAPI.@)
*/
HRESULT
WINAPI
DwmEnableBlurBehindWindow
(
HWND
hWnd
,
const
DWM_BLURBEHIND
*
pBlurBuf
)
{
FIXME
(
"%p %p
\n
"
,
hWnd
,
pBlurBuf
);
return
E_NOTIMPL
;
}
include/dwmapi.h
View file @
e158bb0b
...
...
@@ -41,6 +41,19 @@ typedef struct _MilMatrix3x2D
DOUBLE
DY
;
}
MilMatrix3x2D
;
#define DWM_BB_ENABLE 0x00000001
#define DWM_BB_BLURREGION 0x00000002
#define DWM_BB_TRANSITIONONMAXIMIZED 0x00000004
typedef
struct
_DWM_BLURBEHIND
{
DWORD
dwFlags
;
BOOL
fEnable
;
HRGN
hRgnBlur
;
BOOL
fTransitionOnMaximized
;
}
DWM_BLURBEHIND
,
*
PDWM_BLURBEHIND
;
DWMAPI
DwmEnableBlurBehindWindow
(
HWND
,
const
DWM_BLURBEHIND
*
);
DWMAPI
DwmEnableComposition
(
UINT
);
DWMAPI
DwmEnableMMCSS
(
BOOL
);
DWMAPI
DwmExtendFrameIntoClientArea
(
HWND
,
const
MARGINS
*
);
...
...
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