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
4ee9aef0
Commit
4ee9aef0
authored
Jun 06, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 06, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Added proxy/stub body for CreateInstanceLic().
parent
40966b36
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+13
-4
No files found.
dlls/oleaut32/usrmarshal.c
View file @
4ee9aef0
...
...
@@ -2242,8 +2242,17 @@ HRESULT CALLBACK IClassFactory2_CreateInstanceLic_Proxy(
BSTR
bstrKey
,
PVOID
*
ppvObj
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %s, %p)
\n
"
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppvObj
);
*
ppvObj
=
NULL
;
if
(
pUnkOuter
)
{
ERR
(
"aggregation is not allowed on remote objects
\n
"
);
return
CLASS_E_NOAGGREGATION
;
}
return
IClassFactory2_RemoteCreateInstanceLic_Proxy
(
This
,
riid
,
bstrKey
,
(
IUnknown
**
)
ppvObj
);
}
HRESULT
__RPC_STUB
IClassFactory2_CreateInstanceLic_Stub
(
...
...
@@ -2252,8 +2261,8 @@ HRESULT __RPC_STUB IClassFactory2_CreateInstanceLic_Stub(
BSTR
bstrKey
,
IUnknown
**
ppvObj
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%s, %p)
\n
"
,
debugstr_guid
(
riid
),
ppvObj
);
return
IClassFactory2_CreateInstanceLic
(
This
,
NULL
,
NULL
,
riid
,
bstrKey
,
(
void
**
)
ppvObj
)
;
}
HRESULT
CALLBACK
IEnumConnections_Next_Proxy
(
...
...
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