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
af4c6c81
Commit
af4c6c81
authored
Dec 23, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wuapi: Use an iface instead of a vtbl pointer in wucf.
parent
9b1a6a5d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
main.c
dlls/wuapi/main.c
+6
-6
No files found.
dlls/wuapi/main.c
View file @
af4c6c81
...
...
@@ -39,13 +39,13 @@ typedef HRESULT (*fnCreateInstance)( IUnknown *pUnkOuter, LPVOID *ppObj );
typedef
struct
_wucf
{
const
struct
IClassFactoryVtbl
*
vtbl
;
IClassFactory
IClassFactory_iface
;
fnCreateInstance
pfnCreateInstance
;
}
wucf
;
static
inline
wucf
*
impl_from_IClassFactory
(
IClassFactory
*
iface
)
{
return
(
wucf
*
)((
char
*
)
iface
-
FIELD_OFFSET
(
wucf
,
vtbl
)
);
return
CONTAINING_RECORD
(
iface
,
wucf
,
IClassFactory_iface
);
}
static
HRESULT
WINAPI
wucf_QueryInterface
(
IClassFactory
*
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
...
...
@@ -112,8 +112,8 @@ static const struct IClassFactoryVtbl wucf_vtbl =
wucf_LockServer
};
static
wucf
sessioncf
=
{
&
wucf_vtbl
,
UpdateSession_create
};
static
wucf
updatescf
=
{
&
wucf_vtbl
,
AutomaticUpdates_create
};
static
wucf
sessioncf
=
{
{
&
wucf_vtbl
}
,
UpdateSession_create
};
static
wucf
updatescf
=
{
{
&
wucf_vtbl
}
,
AutomaticUpdates_create
};
static
HINSTANCE
instance
;
...
...
@@ -141,11 +141,11 @@ HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID iid, LPVOID *ppv )
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_UpdateSession
))
{
cf
=
(
IClassFactory
*
)
&
sessioncf
.
vtbl
;
cf
=
&
sessioncf
.
IClassFactory_iface
;
}
else
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_AutomaticUpdates
))
{
cf
=
(
IClassFactory
*
)
&
updatescf
.
vtbl
;
cf
=
&
updatescf
.
IClassFactory_iface
;
}
if
(
!
cf
)
return
CLASS_E_CLASSNOTAVAILABLE
;
return
IClassFactory_QueryInterface
(
cf
,
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