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
f6b16ea7
Commit
f6b16ea7
authored
Feb 18, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Feb 22, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement ITypeInfo_GetNames Stub/Proxy.
parent
59e058ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+6
-4
No files found.
dlls/oleaut32/usrmarshal.c
View file @
f6b16ea7
...
@@ -1598,8 +1598,9 @@ HRESULT CALLBACK ITypeInfo_GetNames_Proxy(
...
@@ -1598,8 +1598,9 @@ HRESULT CALLBACK ITypeInfo_GetNames_Proxy(
UINT
cMaxNames
,
UINT
cMaxNames
,
UINT
*
pcNames
)
UINT
*
pcNames
)
{
{
FIXME
(
"not implemented
\n
"
);
TRACE
(
"(%p, %08x, %p, %d, %p)
\n
"
,
This
,
memid
,
rgBstrNames
,
cMaxNames
,
pcNames
);
return
E_FAIL
;
return
ITypeInfo_RemoteGetNames_Proxy
(
This
,
memid
,
rgBstrNames
,
cMaxNames
,
pcNames
);
}
}
HRESULT
__RPC_STUB
ITypeInfo_GetNames_Stub
(
HRESULT
__RPC_STUB
ITypeInfo_GetNames_Stub
(
...
@@ -1609,8 +1610,9 @@ HRESULT __RPC_STUB ITypeInfo_GetNames_Stub(
...
@@ -1609,8 +1610,9 @@ HRESULT __RPC_STUB ITypeInfo_GetNames_Stub(
UINT
cMaxNames
,
UINT
cMaxNames
,
UINT
*
pcNames
)
UINT
*
pcNames
)
{
{
FIXME
(
"not implemented
\n
"
);
TRACE
(
"(%p, %08x, %p, %d, %p)
\n
"
,
This
,
memid
,
rgBstrNames
,
cMaxNames
,
pcNames
);
return
E_FAIL
;
return
ITypeInfo_GetNames
(
This
,
memid
,
rgBstrNames
,
cMaxNames
,
pcNames
);
}
}
HRESULT
CALLBACK
ITypeInfo_GetIDsOfNames_Proxy
(
HRESULT
CALLBACK
ITypeInfo_GetIDsOfNames_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