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
49a5f7cb
Commit
49a5f7cb
authored
Nov 30, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Dec 03, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix the HRESULT_FROM_WIN32 macro to not change the HRESULT if the error…
include: Fix the HRESULT_FROM_WIN32 macro to not change the HRESULT if the error is already an HRESULT.
parent
31b2d81e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
winerror.h
include/winerror.h
+2
-2
No files found.
include/winerror.h
View file @
49a5f7cb
...
...
@@ -81,7 +81,7 @@
#define HRESULT_SEVERITY(hr) (((hr) >> 31) & 0x1)
#define SCODE_SEVERITY(sc) (((sc) >> 31) & 0x1)
#define __HRESULT_FROM_WIN32(x) ((
x) ? ((HRESULT) (((x) & 0x0000FFFF) | (FACILITY_WIN32 << 16) | 0x80000000)) : 0
)
#define __HRESULT_FROM_WIN32(x) ((
HRESULT)(x) > 0 ? ((HRESULT) (((x) & 0x0000FFFF) | (FACILITY_WIN32 << 16) | 0x80000000)) : (HRESULT)(x)
)
#ifndef _HRESULT_DEFINED
#define _HRESULT_DEFINED
# ifdef _MSC_VER
...
...
@@ -92,7 +92,7 @@ typedef int HRESULT;
#endif
static
inline
HRESULT
HRESULT_FROM_WIN32
(
unsigned
long
x
)
{
return
x
?
((
HRESULT
)
((
x
&
0x0000FFFF
)
|
(
FACILITY_WIN32
<<
16
)
|
0x80000000
))
:
0
;
return
(
HRESULT
)
x
>
0
?
((
HRESULT
)
((
x
&
0x0000FFFF
)
|
(
FACILITY_WIN32
<<
16
)
|
0x80000000
))
:
(
HRESULT
)
x
;
}
#define FACILITY_NT_BIT 0x10000000
#define HRESULT_FROM_NT(x) ((HRESULT) ((x) | FACILITY_NT_BIT))
...
...
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