Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f630f978
Commit
f630f978
authored
Oct 20, 2005
by
Huw Davies
Committed by
Alexandre Julliard
Oct 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proxies and stubs for GetTypeInfoCont, GetLibAttr and ReleaseLibAttr.
parent
6650abcd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
11 deletions
+18
-11
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+18
-11
No files found.
dlls/oleaut32/usrmarshal.c
View file @
f630f978
...
...
@@ -1071,24 +1071,30 @@ HRESULT __RPC_STUB ITypeInfo2_GetDocumentation2_Stub(
UINT
CALLBACK
ITypeLib_GetTypeInfoCount_Proxy
(
ITypeLib
*
This
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
UINT
count
=
0
;
TRACE
(
"(%p)
\n
"
,
This
);
ITypeLib_RemoteGetTypeInfoCount_Proxy
(
This
,
&
count
);
return
count
;
}
HRESULT
__RPC_STUB
ITypeLib_GetTypeInfoCount_Stub
(
ITypeLib
*
This
,
UINT
*
pcTInfo
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
TRACE
(
"(%p, %p)
\n
"
,
This
,
pcTInfo
);
*
pcTInfo
=
ITypeLib_GetTypeInfoCount
(
This
);
return
S_OK
;
}
HRESULT
CALLBACK
ITypeLib_GetLibAttr_Proxy
(
ITypeLib
*
This
,
TLIBATTR
**
ppTLibAttr
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
CLEANLOCALSTORAGE
stg
;
TRACE
(
"(%p, %p)
\n
"
,
This
,
ppTLibAttr
);
return
ITypeLib_RemoteGetLibAttr_Proxy
(
This
,
ppTLibAttr
,
&
stg
);
}
HRESULT
__RPC_STUB
ITypeLib_GetLibAttr_Stub
(
...
...
@@ -1096,8 +1102,8 @@ HRESULT __RPC_STUB ITypeLib_GetLibAttr_Stub(
LPTLIBATTR
*
ppTLibAttr
,
CLEANLOCALSTORAGE
*
pDummy
)
{
FIXME
(
"not implemented
\n
"
);
return
E_FAIL
;
TRACE
(
"(%p, %p)
\n
"
,
This
,
ppTLibAttr
);
return
ITypeLib_GetLibAttr
(
This
,
ppTLibAttr
)
;
}
HRESULT
CALLBACK
ITypeLib_GetDocumentation_Proxy
(
...
...
@@ -1175,14 +1181,15 @@ void CALLBACK ITypeLib_ReleaseTLibAttr_Proxy(
ITypeLib
*
This
,
TLIBATTR
*
pTLibAttr
)
{
FIXME
(
"not implemented
\n
"
);
TRACE
(
"(%p, %p)
\n
"
,
This
,
pTLibAttr
);
CoTaskMemFree
(
pTLibAttr
);
}
HRESULT
__RPC_STUB
ITypeLib_ReleaseTLibAttr_Stub
(
ITypeLib
*
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