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
1216170b
Commit
1216170b
authored
Feb 09, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commdlg.dll16: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
05fef748
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
Makefile.in
dlls/commdlg.dll16/Makefile.in
+0
-1
filedlg.c
dlls/commdlg.dll16/filedlg.c
+1
-1
fontdlg.c
dlls/commdlg.dll16/fontdlg.c
+2
-2
No files found.
dlls/commdlg.dll16/Makefile.in
View file @
1216170b
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
commdlg.dll16
IMPORTS
=
comdlg32 user32 gdi32
EXTRADLLFLAGS
=
-m16
-Wb
,--main-module,comdlg32.dll
...
...
dlls/commdlg.dll16/filedlg.c
View file @
1216170b
...
...
@@ -218,7 +218,7 @@ static LRESULT call_hook16( WNDPROC16 hook, HWND hwnd, UINT msg, WPARAM wp, LPAR
CONTEXT
context
;
WORD
params
[
5
];
TRACE
(
"%p: %p %08x %
l
x %lx: stub
\n
"
,
hook
,
hwnd
,
msg
,
wp
,
lp
);
TRACE
(
"%p: %p %08x %x %lx: stub
\n
"
,
hook
,
hwnd
,
msg
,
wp
,
lp
);
memset
(
&
context
,
0
,
sizeof
(
context
)
);
context
.
SegDs
=
context
.
SegEs
=
CURRENT_SS
;
...
...
dlls/commdlg.dll16/fontdlg.c
View file @
1216170b
...
...
@@ -43,7 +43,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(commdlg);
INT16
WINAPI
FontFamilyEnumProc16
(
SEGPTR
logfont
,
SEGPTR
metrics
,
UINT16
nFontType
,
LPARAM
lParam
)
{
FIXME
(
"%08
x %08
x %u %lx
\n
"
,
logfont
,
metrics
,
nFontType
,
lParam
);
FIXME
(
"%08
lx %08l
x %u %lx
\n
"
,
logfont
,
metrics
,
nFontType
,
lParam
);
return
0
;
}
...
...
@@ -53,7 +53,7 @@ INT16 WINAPI FontFamilyEnumProc16( SEGPTR logfont, SEGPTR metrics,
INT16
WINAPI
FontStyleEnumProc16
(
SEGPTR
logfont
,
SEGPTR
metrics
,
UINT16
nFontType
,
LPARAM
lParam
)
{
FIXME
(
"%08
x %08
x %u %lx
\n
"
,
logfont
,
metrics
,
nFontType
,
lParam
);
FIXME
(
"%08
lx %08l
x %u %lx
\n
"
,
logfont
,
metrics
,
nFontType
,
lParam
);
return
0
;
}
...
...
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