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
acea0eea
Commit
acea0eea
authored
Jan 28, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 28, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dlls: Print HRESULT as 32bit value.
parent
cbf55d82
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
marshal.c
dlls/dispex/tests/marshal.c
+1
-1
dplayx_global.c
dlls/dplayx/dplayx_global.c
+1
-1
tmarshal.c
dlls/oleaut32/tests/tmarshal.c
+1
-1
No files found.
dlls/dispex/tests/marshal.c
View file @
acea0eea
...
...
@@ -31,7 +31,7 @@
#include "wine/test.h"
#define ok_ole_success(hr, func) ok(hr == S_OK, #func " failed with error 0x%08
lx\n", (unsigned long int)
hr)
#define ok_ole_success(hr, func) ok(hr == S_OK, #func " failed with error 0x%08
x\n",
hr)
#define RELEASEMARSHALDATA WM_USER
...
...
dlls/dplayx/dplayx_global.c
View file @
acea0eea
...
...
@@ -1200,7 +1200,7 @@ LPCSTR DPLAYX_HresultToString(HRESULT hr)
/* For errors not in the list, return HRESULT as a string
This part is not thread safe */
WARN
(
"Unknown error 0x%08x
\n
"
,
hr
);
wsprintfA
(
szTempStr
,
"0x%08
l
x"
,
hr
);
wsprintfA
(
szTempStr
,
"0x%08x"
,
hr
);
return
szTempStr
;
}
}
dlls/oleaut32/tests/tmarshal.c
View file @
acea0eea
...
...
@@ -32,7 +32,7 @@
static
HRESULT
(
WINAPI
*
pVarAdd
)(
LPVARIANT
,
LPVARIANT
,
LPVARIANT
);
#define ok_ole_success(hr, func) ok(hr == S_OK, #func " failed with error 0x%08
lx\n", (unsigned long int)
hr)
#define ok_ole_success(hr, func) ok(hr == S_OK, #func " failed with error 0x%08
x\n",
hr)
/* ULL suffix is not portable */
#define ULL_CONST(dw1, dw2) ((((ULONGLONG)dw1) << 32) | (ULONGLONG)dw2)
...
...
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