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
fb36148f
Commit
fb36148f
authored
Oct 07, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 07, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwmapi: Added DwmAttachMilContent() and DwmDetachMilContent() stubs.
parent
537febf2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
dwmapi.spec
dlls/dwmapi/dwmapi.spec
+2
-2
dwmapi_main.c
dlls/dwmapi/dwmapi_main.c
+18
-0
No files found.
dlls/dwmapi/dwmapi.spec
View file @
fb36148f
...
...
@@ -20,9 +20,9 @@
119 stub @
120 stub @
@ st
ub DwmAttachMilContent
@ st
dcall DwmAttachMilContent(long)
@ stdcall DwmDefWindowProc(long long long long ptr)
@ st
ub DwmDetachMilContent
@ st
dcall DwmDetachMilContent(long)
@ stdcall DwmEnableBlurBehindWindow(ptr ptr)
@ stdcall DwmEnableMMCSS(long)
@ stdcall DwmExtendFrameIntoClientArea(long ptr)
...
...
dlls/dwmapi/dwmapi_main.c
View file @
fb36148f
...
...
@@ -234,3 +234,21 @@ HRESULT WINAPI DwmGetCompositionTimingInfo(HWND hwnd, DWM_TIMING_INFO *info)
return
E_NOTIMPL
;
}
/**********************************************************************
* DwmAttachMilContent (DWMAPI.@)
*/
HRESULT
WINAPI
DwmAttachMilContent
(
HWND
hwnd
)
{
FIXME
(
"(%p) stub
\n
"
,
hwnd
);
return
E_NOTIMPL
;
}
/**********************************************************************
* DwmDetachMilContent (DWMAPI.@)
*/
HRESULT
WINAPI
DwmDetachMilContent
(
HWND
hwnd
)
{
FIXME
(
"(%p) stub
\n
"
,
hwnd
);
return
E_NOTIMPL
;
}
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