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
12e8d3bd
Commit
12e8d3bd
authored
Jan 20, 2024
by
Piotr Caban
Committed by
Alexandre Julliard
Jan 22, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp140: Recognize no error case in _Syserror_map.
parent
c0598baa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
misc.c
dlls/msvcp90/misc.c
+6
-0
No files found.
dlls/msvcp90/misc.c
View file @
12e8d3bd
...
...
@@ -28,6 +28,9 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcp);
#if _MSVCP_VER >= 110
/* error strings generated with glibc strerror */
#if _MSVCP_VER >= 140
static
const
char
str_SUCC
[]
=
"success"
;
#endif
static
const
char
str_EPERM
[]
=
"operation not permitted"
;
static
const
char
str_ENOENT
[]
=
"no such file or directory"
;
static
const
char
str_ESRCH
[]
=
"no such process"
;
...
...
@@ -112,6 +115,9 @@ static const struct {
const
char
*
str
;
}
syserror_map
[]
=
{
#if _MSVCP_VER >= 140
{
0
,
str_SUCC
},
#endif
{
EPERM
,
str_EPERM
},
{
ENOENT
,
str_ENOENT
},
{
ESRCH
,
str_ESRCH
},
...
...
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