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
b7818870
Commit
b7818870
authored
Jun 04, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
faultrep: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a003eb5d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
Makefile.in
dlls/faultrep/Makefile.in
+2
-0
faultrep.c
dlls/faultrep/faultrep.c
+1
-2
No files found.
dlls/faultrep/Makefile.in
View file @
b7818870
...
...
@@ -2,4 +2,6 @@ MODULE = faultrep.dll
IMPORTLIB
=
faultrep
IMPORTS
=
advapi32
EXTRADLLFLAGS
=
-mno-cygwin
C_SRCS
=
faultrep.c
dlls/faultrep/faultrep.c
View file @
b7818870
...
...
@@ -24,7 +24,6 @@
#include "winnls.h"
#include "winreg.h"
#include "wine/debug.h"
#include "wine/unicode.h"
#include "errorrep.h"
...
...
@@ -62,7 +61,7 @@ BOOL WINAPI AddERExcludedApplicationW(LPCWSTR lpAppFileName)
LONG
res
;
TRACE
(
"(%s)
\n
"
,
wine_dbgstr_w
(
lpAppFileName
));
bslash
=
strrchrW
(
lpAppFileName
,
'\\'
);
bslash
=
wcsrchr
(
lpAppFileName
,
'\\'
);
if
(
bslash
!=
NULL
)
lpAppFileName
=
bslash
+
1
;
if
(
*
lpAppFileName
==
'\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