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
e783531e
Commit
e783531e
authored
Apr 28, 2006
by
Huw Davies
Committed by
Alexandre Julliard
May 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement GetDocumentation_Proxy/Stub.
parent
5e69b5d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
4 deletions
+24
-4
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+24
-4
No files found.
dlls/oleaut32/usrmarshal.c
View file @
e783531e
...
...
@@ -1418,8 +1418,27 @@ HRESULT CALLBACK ITypeInfo_GetDocumentation_Proxy(
DWORD
*
pdwHelpContext
,
BSTR
*
pBstrHelpFile
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
DWORD
help_context
;
BSTR
name
,
doc_string
,
help_file
;
HRESULT
hr
;
TRACE
(
"(%p, %08lx, %p, %p, %p, %p)
\n
"
,
This
,
memid
,
pBstrName
,
pBstrDocString
,
pdwHelpContext
,
pBstrHelpFile
);
/* FIXME: presumably refPtrFlags is supposed to be a bitmask of which ptrs we actually want? */
hr
=
ITypeInfo_RemoteGetDocumentation_Proxy
(
This
,
memid
,
0
,
&
name
,
&
doc_string
,
&
help_context
,
&
help_file
);
if
(
SUCCEEDED
(
hr
))
{
if
(
pBstrName
)
*
pBstrName
=
name
;
else
SysFreeString
(
name
);
if
(
pBstrDocString
)
*
pBstrDocString
=
doc_string
;
else
SysFreeString
(
doc_string
);
if
(
pBstrHelpFile
)
*
pBstrHelpFile
=
help_file
;
else
SysFreeString
(
help_file
);
if
(
pdwHelpContext
)
*
pdwHelpContext
=
help_context
;
}
return
hr
;
}
HRESULT
__RPC_STUB
ITypeInfo_GetDocumentation_Stub
(
...
...
@@ -1431,8 +1450,9 @@ HRESULT __RPC_STUB ITypeInfo_GetDocumentation_Stub(
DWORD
*
pdwHelpContext
,
BSTR
*
pBstrHelpFile
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
TRACE
(
"(%p, %08lx, %08lx, %p, %p, %p, %p)
\n
"
,
This
,
memid
,
refPtrFlags
,
pBstrName
,
pBstrDocString
,
pdwHelpContext
,
pBstrHelpFile
);
return
ITypeInfo_GetDocumentation
(
This
,
memid
,
pBstrName
,
pBstrDocString
,
pdwHelpContext
,
pBstrHelpFile
);
}
HRESULT
CALLBACK
ITypeInfo_GetDllEntry_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