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
6cd7240f
Commit
6cd7240f
authored
May 02, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhlp32: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
15c4352f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
Makefile.in
programs/winhlp32/Makefile.in
+2
-1
macro.lex.l
programs/winhlp32/macro.lex.l
+0
-1
winhelp.c
programs/winhlp32/winhelp.c
+3
-3
No files found.
programs/winhlp32/Makefile.in
View file @
6cd7240f
MODULE
=
winhlp32.exe
APPMODE
=
-mwindows
IMPORTS
=
user32 gdi32
DELAYIMPORTS
=
shell32 comctl32 comdlg32
EXTRADLLFLAGS
=
-mwindows
-mno-cygwin
C_SRCS
=
\
callback.c
\
hlpfile.c
\
...
...
programs/winhlp32/macro.lex.l
View file @
6cd7240f
...
...
@@ -23,7 +23,6 @@
%option noinput nounput never-interactive 8bit
%x quote
%{
#include "config.h"
#include <assert.h>
#include <stdarg.h>
...
...
programs/winhlp32/winhelp.c
View file @
6cd7240f
...
...
@@ -275,10 +275,10 @@ HLPFILE_WINDOWINFO* WINHELP_GetWindowInfo(HLPFILE* hlpfile, LPCSTR name)
strcpy
(
mwi
.
name
,
"main"
);
if
(
hlpfile
&&
hlpfile
->
lpszTitle
[
0
])
{
char
tmp
[
128
];
char
tmp
[
40
];
LoadStringA
(
Globals
.
hInstance
,
STID_WINE_HELP
,
tmp
,
sizeof
(
tmp
));
snprintf
(
mwi
.
caption
,
sizeof
(
mwi
.
caption
),
"%s %s - %s"
,
hlpfile
->
lpszTitle
,
tmp
,
hlpfile
->
lpszPath
);
_
snprintf
(
mwi
.
caption
,
sizeof
(
mwi
.
caption
),
"%s %s - %s"
,
hlpfile
->
lpszTitle
,
tmp
,
hlpfile
->
lpszPath
);
}
else
LoadStringA
(
Globals
.
hInstance
,
STID_WINE_HELP
,
mwi
.
caption
,
sizeof
(
mwi
.
caption
));
...
...
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