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
a0e75874
Commit
a0e75874
authored
Aug 09, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Aug 16, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwmapi: Add stub for DwmDefWindowProc.
parent
1583057f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
dwmapi.spec
dlls/dwmapi/dwmapi.spec
+1
-1
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 @
a0e75874
...
...
@@ -21,7 +21,7 @@
120 stub @
@ stub DwmAttachMilContent
@ st
ub DwmDefWindowProc
@ st
dcall DwmDefWindowProc(long long long long ptr)
@ stub DwmDetachMilContent
@ stdcall DwmEnableBlurBehindWindow(ptr ptr)
@ stdcall DwmEnableMMCSS(long)
...
...
dlls/dwmapi/dwmapi_main.c
View file @
a0e75874
...
...
@@ -176,3 +176,15 @@ HRESULT WINAPI DwmEnableBlurBehindWindow(HWND hWnd, const DWM_BLURBEHIND *pBlurB
return
E_NOTIMPL
;
}
/**********************************************************************
* DwmDefWindowProc (DWMAPI.@)
*/
BOOL
WINAPI
DwmDefWindowProc
(
HWND
hWnd
,
UINT
Msg
,
WPARAM
wParam
,
LPARAM
lParam
,
LRESULT
*
plResult
)
{
static
int
i
;
if
(
!
i
++
)
FIXME
(
"stub
\n
"
);
return
FALSE
;
}
include/dwmapi.h
View file @
a0e75874
...
...
@@ -53,6 +53,7 @@ typedef struct _DWM_BLURBEHIND
BOOL
fTransitionOnMaximized
;
}
DWM_BLURBEHIND
,
*
PDWM_BLURBEHIND
;
DWMAPI
DwmDefWindowProc
(
HWND
,
UINT
,
WPARAM
,
LPARAM
,
LRESULT
*
);
DWMAPI
DwmEnableBlurBehindWindow
(
HWND
,
const
DWM_BLURBEHIND
*
);
DWMAPI
DwmEnableComposition
(
UINT
);
DWMAPI
DwmEnableMMCSS
(
BOOL
);
...
...
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