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
9e0e3a73
Commit
9e0e3a73
authored
Feb 11, 2011
by
Huw Davies
Committed by
Alexandre Julliard
Feb 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement proxy / stub for ITypeLib2_GetDocumentation2.
parent
afeaaf37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
19 deletions
+35
-19
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+35
-19
No files found.
dlls/oleaut32/usrmarshal.c
View file @
9e0e3a73
...
...
@@ -2101,29 +2101,45 @@ HRESULT __RPC_STUB ITypeLib2_GetLibStatistics_Stub(
return
E_FAIL
;
}
HRESULT
CALLBACK
ITypeLib2_GetDocumentation2_Proxy
(
ITypeLib2
*
This
,
INT
index
,
LCID
lcid
,
BSTR
*
pbstrHelpString
,
DWORD
*
pdwHelpStringContext
,
BSTR
*
pbstrHelpStringDll
)
HRESULT
CALLBACK
ITypeLib2_GetDocumentation2_Proxy
(
ITypeLib2
*
This
,
INT
index
,
LCID
lcid
,
BSTR
*
help_string
,
DWORD
*
help_context
,
BSTR
*
help_dll
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
DWORD
dummy_help_context
,
flags
=
0
;
BSTR
dummy_help_string
,
dummy_help_dll
;
HRESULT
hr
;
TRACE
(
"(%p, %d, %08x, %p, %p, %p)
\n
"
,
This
,
index
,
lcid
,
help_string
,
help_context
,
help_dll
);
if
(
!
help_string
)
help_string
=
&
dummy_help_string
;
else
flags
=
1
;
if
(
!
help_context
)
help_context
=
&
dummy_help_context
;
else
flags
|=
2
;
if
(
!
help_dll
)
help_dll
=
&
dummy_help_dll
;
else
flags
|=
4
;
hr
=
ITypeLib2_RemoteGetDocumentation2_Proxy
(
This
,
index
,
lcid
,
flags
,
help_string
,
help_context
,
help_dll
);
/* We don't need to free the dummy BSTRs since the stub ensures that these will be NULLs. */
return
hr
;
}
HRESULT
__RPC_STUB
ITypeLib2_GetDocumentation2_Stub
(
ITypeLib2
*
This
,
INT
index
,
LCID
lcid
,
DWORD
refPtrFlags
,
BSTR
*
pbstrHelpString
,
DWORD
*
pdwHelpStringContext
,
BSTR
*
pbstrHelpStringDll
)
HRESULT
__RPC_STUB
ITypeLib2_GetDocumentation2_Stub
(
ITypeLib2
*
This
,
INT
index
,
LCID
lcid
,
DWORD
flags
,
BSTR
*
help_string
,
DWORD
*
help_context
,
BSTR
*
help_dll
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
TRACE
(
"(%p, %d, %08x, %08x, %p, %p, %p)
\n
"
,
This
,
index
,
lcid
,
flags
,
help_string
,
help_context
,
help_dll
);
*
help_string
=
*
help_dll
=
NULL
;
*
help_context
=
0
;
if
(
!
(
flags
&
1
))
help_string
=
NULL
;
if
(
!
(
flags
&
2
))
help_context
=
NULL
;
if
(
!
(
flags
&
4
))
help_dll
=
NULL
;
return
ITypeLib2_GetDocumentation2
(
This
,
index
,
lcid
,
help_string
,
help_context
,
help_dll
);
}
HRESULT
CALLBACK
IPropertyBag_Read_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