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
2bc66dc0
Commit
2bc66dc0
authored
Aug 29, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 29, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Added proxy/stub for BindType.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a1b07525
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
9 deletions
+27
-9
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+27
-9
No files found.
dlls/oleaut32/usrmarshal.c
View file @
2bc66dc0
...
...
@@ -1515,23 +1515,41 @@ HRESULT __RPC_STUB ITypeComp_Bind_Stub(
HRESULT
CALLBACK
ITypeComp_BindType_Proxy
(
ITypeComp
*
This
,
LPOLESTR
szN
ame
,
LPOLESTR
n
ame
,
ULONG
lHashVal
,
ITypeInfo
**
ppTInfo
,
ITypeComp
**
ppTC
omp
)
ITypeInfo
**
ti
,
ITypeComp
**
typec
omp
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
HRESULT
hr
;
TRACE
(
"(%p, %s, %#x, %p, %p)
\n
"
,
This
,
debugstr_w
(
name
),
lHashVal
,
ti
,
typecomp
);
hr
=
ITypeComp_RemoteBindType_Proxy
(
This
,
name
,
lHashVal
,
ti
);
if
(
hr
==
S_OK
)
ITypeInfo_GetTypeComp
(
*
ti
,
typecomp
);
else
if
(
typecomp
)
*
typecomp
=
NULL
;
return
hr
;
}
HRESULT
__RPC_STUB
ITypeComp_BindType_Stub
(
ITypeComp
*
This
,
LPOLESTR
szN
ame
,
LPOLESTR
n
ame
,
ULONG
lHashVal
,
ITypeInfo
**
ppTInfo
)
ITypeInfo
**
ti
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
ITypeComp
*
typecomp
=
NULL
;
HRESULT
hr
;
TRACE
(
"(%p, %s, %#x, %p)
\n
"
,
This
,
debugstr_w
(
name
),
lHashVal
,
ti
);
hr
=
ITypeComp_BindType
(
This
,
name
,
lHashVal
,
ti
,
&
typecomp
);
if
(
typecomp
)
ITypeComp_Release
(
typecomp
);
return
hr
;
}
/* ITypeInfo */
...
...
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