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
f4fa510e
Commit
f4fa510e
authored
Jan 25, 2014
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Jan 29, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32/tests: Use common wine_dbgstr_guid implementation from test.h.
parent
86a9e6a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
13 deletions
+1
-13
vartype.c
dlls/oleaut32/tests/vartype.c
+1
-13
No files found.
dlls/oleaut32/tests/vartype.c
View file @
f4fa510e
...
...
@@ -510,18 +510,6 @@ static HRESULT (WINAPI *pVarBstrCat)(BSTR,BSTR,BSTR*);
static
INT
(
WINAPI
*
pSystemTimeToVariantTime
)(
LPSYSTEMTIME
,
double
*
);
static
void
(
WINAPI
*
pClearCustData
)(
LPCUSTDATA
);
static
const
char
*
debugstr_guid
(
REFIID
riid
)
{
static
char
buf
[
50
];
sprintf
(
buf
,
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}"
,
riid
->
Data1
,
riid
->
Data2
,
riid
->
Data3
,
riid
->
Data4
[
0
],
riid
->
Data4
[
1
],
riid
->
Data4
[
2
],
riid
->
Data4
[
3
],
riid
->
Data4
[
4
],
riid
->
Data4
[
5
],
riid
->
Data4
[
6
],
riid
->
Data4
[
7
]);
return
buf
;
}
/* Internal representation of a BSTR */
typedef
struct
tagINTERNAL_BSTR
{
...
...
@@ -602,7 +590,7 @@ static HRESULT WINAPI DummyDispatch_Invoke(IDispatch *iface,
CHECK_EXPECT
(
dispatch_invoke
);
ok
(
dispid
==
DISPID_VALUE
,
"got dispid %d
\n
"
,
dispid
);
ok
(
IsEqualIID
(
riid
,
&
IID_NULL
),
"go riid %s
\n
"
,
debu
gstr_guid
(
riid
));
ok
(
IsEqualIID
(
riid
,
&
IID_NULL
),
"go riid %s
\n
"
,
wine_db
gstr_guid
(
riid
));
ok
(
wFlags
==
DISPATCH_PROPERTYGET
,
"Flags wrong
\n
"
);
ok
(
params
->
rgvarg
==
NULL
,
"got %p
\n
"
,
params
->
rgvarg
);
...
...
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