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
c7bb8bd4
Commit
c7bb8bd4
authored
May 07, 2006
by
Huw Davies
Committed by
Alexandre Julliard
May 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement GetVarDesc_Proxy and friends.
parent
9235ae2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
7 deletions
+32
-7
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+32
-7
No files found.
dlls/oleaut32/usrmarshal.c
View file @
c7bb8bd4
...
...
@@ -1448,8 +1448,14 @@ HRESULT CALLBACK ITypeInfo_GetVarDesc_Proxy(
UINT
index
,
VARDESC
**
ppVarDesc
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
CLEANLOCALSTORAGE
stg
;
TRACE
(
"(%p, %d, %p)
\n
"
,
This
,
index
,
ppVarDesc
);
stg
.
flags
=
0
;
stg
.
pStorage
=
NULL
;
stg
.
pInterface
=
NULL
;
return
ITypeInfo_RemoteGetVarDesc_Proxy
(
This
,
index
,
ppVarDesc
,
&
stg
);
}
HRESULT
__RPC_STUB
ITypeInfo_GetVarDesc_Stub
(
...
...
@@ -1458,8 +1464,18 @@ HRESULT __RPC_STUB ITypeInfo_GetVarDesc_Stub(
LPVARDESC
*
ppVarDesc
,
CLEANLOCALSTORAGE
*
pDummy
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
HRESULT
hr
;
TRACE
(
"(%p, %d, %p)
\n
"
,
This
,
index
,
ppVarDesc
);
hr
=
ITypeInfo_GetVarDesc
(
This
,
index
,
ppVarDesc
);
if
(
hr
!=
S_OK
)
return
hr
;
pDummy
->
flags
=
CLS_VARDESC
;
ITypeInfo_AddRef
(
This
);
pDummy
->
pInterface
=
(
IUnknown
*
)
This
;
pDummy
->
pStorage
=
ppVarDesc
;
return
hr
;
}
HRESULT
CALLBACK
ITypeInfo_GetNames_Proxy
(
...
...
@@ -1709,14 +1725,23 @@ void CALLBACK ITypeInfo_ReleaseVarDesc_Proxy(
ITypeInfo
*
This
,
VARDESC
*
pVarDesc
)
{
FIXME
(
"not implemented
\n
"
);
TRACE
(
"(%p, %p)
\n
"
,
This
,
pVarDesc
);
if
(
pVarDesc
->
lpstrSchema
)
CoTaskMemFree
(
pVarDesc
->
lpstrSchema
);
if
(
pVarDesc
->
varkind
==
VAR_CONST
)
CoTaskMemFree
(
pVarDesc
->
u
.
lpvarValue
);
free_embedded_elemdesc
(
&
pVarDesc
->
elemdescVar
);
CoTaskMemFree
(
pVarDesc
);
}
HRESULT
__RPC_STUB
ITypeInfo_ReleaseVarDesc_Stub
(
ITypeInfo
*
This
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
TRACE
(
"nothing to do
\n
"
);
return
S_OK
;
}
...
...
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