Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
e158bb0b
Commit
e158bb0b
authored
14 years ago
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
dwmapi: Add stub DwmEnableBlurBehindWindow.
parent
841153aa
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/dwmapi/dwmapi.spec
+1
-1
1 addition, 1 deletion
dlls/dwmapi/dwmapi.spec
dlls/dwmapi/dwmapi_main.c
+10
-0
10 additions, 0 deletions
dlls/dwmapi/dwmapi_main.c
include/dwmapi.h
+13
-0
13 additions, 0 deletions
include/dwmapi.h
with
24 additions
and
1 deletion
dlls/dwmapi/dwmapi.spec
+
1
−
1
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()
...
...
This diff is collapsed.
Click to expand it.
dlls/dwmapi/dwmapi_main.c
+
10
−
0
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
;
}
This diff is collapsed.
Click to expand it.
include/dwmapi.h
+
13
−
0
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
*
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment