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
96aa7bcd
Commit
96aa7bcd
authored
Feb 10, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 10, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwmapi: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
37b972c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/dwmapi/Makefile.in
+0
-1
dwmapi_main.c
dlls/dwmapi/dwmapi_main.c
+4
-4
No files found.
dlls/dwmapi/Makefile.in
View file @
96aa7bcd
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
dwmapi.dll
IMPORTLIB
=
dwmapi
...
...
dlls/dwmapi/dwmapi_main.c
View file @
96aa7bcd
...
...
@@ -115,7 +115,7 @@ HRESULT WINAPI DwmSetWindowAttribute(HWND hwnd, DWORD attributenum, LPCVOID attr
{
static
BOOL
once
;
if
(
!
once
++
)
FIXME
(
"(%p, %
x, %p, %
x) stub
\n
"
,
hwnd
,
attributenum
,
attribute
,
size
);
if
(
!
once
++
)
FIXME
(
"(%p, %
lx, %p, %l
x) stub
\n
"
,
hwnd
,
attributenum
,
attribute
,
size
);
return
S_OK
;
}
...
...
@@ -197,7 +197,7 @@ BOOL WINAPI DwmDefWindowProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam,
*/
HRESULT
WINAPI
DwmGetWindowAttribute
(
HWND
hwnd
,
DWORD
attribute
,
PVOID
pv_attribute
,
DWORD
size
)
{
FIXME
(
"(%p %
d %p %
d) stub
\n
"
,
hwnd
,
attribute
,
pv_attribute
,
size
);
FIXME
(
"(%p %
ld %p %l
d) stub
\n
"
,
hwnd
,
attribute
,
pv_attribute
,
size
);
return
E_NOTIMPL
;
}
...
...
@@ -265,7 +265,7 @@ HRESULT WINAPI DwmSetPresentParameters(HWND hwnd, DWM_PRESENT_PARAMETERS *params
*/
HRESULT
WINAPI
DwmSetIconicLivePreviewBitmap
(
HWND
hwnd
,
HBITMAP
hbmp
,
POINT
*
pos
,
DWORD
flags
)
{
FIXME
(
"(%p %p %p %x) stub
\n
"
,
hwnd
,
hbmp
,
pos
,
flags
);
FIXME
(
"(%p %p %p %
l
x) stub
\n
"
,
hwnd
,
hbmp
,
pos
,
flags
);
return
S_OK
;
};
...
...
@@ -274,7 +274,7 @@ HRESULT WINAPI DwmSetIconicLivePreviewBitmap(HWND hwnd, HBITMAP hbmp, POINT *pos
*/
HRESULT
WINAPI
DwmSetIconicThumbnail
(
HWND
hwnd
,
HBITMAP
hbmp
,
DWORD
flags
)
{
FIXME
(
"(%p %p %x) stub
\n
"
,
hwnd
,
hbmp
,
flags
);
FIXME
(
"(%p %p %
l
x) stub
\n
"
,
hwnd
,
hbmp
,
flags
);
return
S_OK
;
};
...
...
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