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
8e801e25
Commit
8e801e25
authored
Nov 11, 2002
by
Marcus Meissner
Committed by
Alexandre Julliard
Nov 11, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silence one FIXME(). Implement ITypeInfo::GetDocumentation for
variable descriptions.
parent
689312b1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
typelib.c
dlls/oleaut32/typelib.c
+14
-3
No files found.
dlls/oleaut32/typelib.c
View file @
8e801e25
...
...
@@ -4192,6 +4192,9 @@ _invoke(LPVOID func,CALLCONV callconv, int nrargs, DWORD *args) {
extern
int
const
_argsize
(
DWORD
vt
);
/***********************************************************************
* DispCallFunc (OLEAUT32.@)
*/
HRESULT
WINAPI
DispCallFunc
(
void
*
pvInstance
,
ULONG
oVft
,
CALLCONV
cc
,
VARTYPE
vtReturn
,
UINT
cActuals
,
...
...
@@ -4309,7 +4312,8 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
argspos
+=
arglen
;
}
else
{
TYPEDESC
*
tdesc
=
&
(
pFDesc
->
funcdesc
.
lprgelemdescParam
[
i
].
tdesc
);
FIXME
(
"set %d to pointer for get (type is %d)
\n
"
,
i
,
tdesc
->
vt
);
if
(
tdesc
->
vt
!=
VT_PTR
)
FIXME
(
"set %d to pointer for get (type is %d)
\n
"
,
i
,
tdesc
->
vt
);
/*FIXME: give pointers for the rest, so propertyget works*/
args
[
argspos
]
=
(
DWORD
)
&
args2
[
args2pos
];
...
...
@@ -4418,6 +4422,8 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
*
* Retrieves the documentation string, the complete Help file name and path,
* and the context ID for the Help topic for a specified type description.
*
* (Can be tested by the Visual Basic Editor in Word for instance.)
*/
static
HRESULT
WINAPI
ITypeInfo_fnGetDocumentation
(
ITypeInfo2
*
iface
,
MEMBERID
memid
,
BSTR
*
pBstrName
,
BSTR
*
pBstrDocString
,
...
...
@@ -4452,8 +4458,13 @@ static HRESULT WINAPI ITypeInfo_fnGetDocumentation( ITypeInfo2 *iface,
}
for
(
pVDesc
=
This
->
varlist
;
pVDesc
;
pVDesc
=
pVDesc
->
next
)
if
(
pVDesc
->
vardesc
.
memid
==
memid
){
FIXME
(
"Not implemented
\n
"
);
return
S_OK
;
if
(
pBstrName
)
*
pBstrName
=
SysAllocString
(
pVDesc
->
Name
);
if
(
pBstrDocString
)
*
pBstrDocString
=
SysAllocString
(
pVDesc
->
HelpString
);
if
(
pdwHelpContext
)
*
pdwHelpContext
=
pVDesc
->
HelpContext
;
return
S_OK
;
}
}
return
TYPE_E_ELEMENTNOTFOUND
;
...
...
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