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
91bd7ffa
Commit
91bd7ffa
authored
Sep 07, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Clean up IPSFactoryBuffer instance.
parent
d7af6664
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
tmarshal.c
dlls/oleaut32/tmarshal.c
+3
-8
No files found.
dlls/oleaut32/tmarshal.c
View file @
91bd7ffa
...
...
@@ -2338,17 +2338,12 @@ static const IPSFactoryBufferVtbl psfacbufvtbl = {
PSFacBuf_CreateStub
};
/* This is the whole PSFactoryBuffer object, just the vtableptr */
static
const
IPSFactoryBufferVtbl
*
lppsfac
=
&
psfacbufvtbl
;
static
IPSFactoryBuffer
psfac
=
{
&
psfacbufvtbl
};
/***********************************************************************
* TMARSHAL_DllGetClassObject
*/
HRESULT
TMARSHAL_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
HRESULT
TMARSHAL_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
void
*
*
ppv
)
{
if
(
IsEqualIID
(
iid
,
&
IID_IPSFactoryBuffer
))
{
*
ppv
=
&
lppsfac
;
return
S_OK
;
}
return
E_NOINTERFACE
;
return
IPSFactoryBuffer_QueryInterface
(
&
psfac
,
iid
,
ppv
);
}
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