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
40213ae2
Commit
40213ae2
authored
Dec 08, 2010
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 09, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui: Use an iface instead of a vtbl pointer in ACLShellSource.
parent
9a0f38e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
aclsource.c
dlls/browseui/aclsource.c
+13
-8
No files found.
dlls/browseui/aclsource.c
View file @
40213ae2
...
...
@@ -43,11 +43,16 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
browseui
);
typedef
struct
tagACLMulti
{
const
IACList2Vtbl
*
acl2Vtbl
;
IACList2
IACList2_iface
;
LONG
refCount
;
DWORD
dwOptions
;
}
ACLShellSource
;
static
inline
ACLShellSource
*
impl_from_IACList2
(
IACList2
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
ACLShellSource
,
IACList2_iface
);
}
static
void
ACLShellSource_Destructor
(
ACLShellSource
*
This
)
{
TRACE
(
"destroying %p
\n
"
,
This
);
...
...
@@ -56,7 +61,7 @@ static void ACLShellSource_Destructor(ACLShellSource *This)
static
HRESULT
WINAPI
ACLShellSource_QueryInterface
(
IACList2
*
iface
,
REFIID
iid
,
LPVOID
*
ppvOut
)
{
ACLShellSource
*
This
=
(
ACLShellSource
*
)
iface
;
ACLShellSource
*
This
=
impl_from_IACList2
(
iface
)
;
*
ppvOut
=
NULL
;
if
(
IsEqualIID
(
iid
,
&
IID_IUnknown
)
||
IsEqualIID
(
iid
,
&
IID_IACList2
)
||
...
...
@@ -77,13 +82,13 @@ static HRESULT WINAPI ACLShellSource_QueryInterface(IACList2 *iface, REFIID iid,
static
ULONG
WINAPI
ACLShellSource_AddRef
(
IACList2
*
iface
)
{
ACLShellSource
*
This
=
(
ACLShellSource
*
)
iface
;
ACLShellSource
*
This
=
impl_from_IACList2
(
iface
)
;
return
InterlockedIncrement
(
&
This
->
refCount
);
}
static
ULONG
WINAPI
ACLShellSource_Release
(
IACList2
*
iface
)
{
ACLShellSource
*
This
=
(
ACLShellSource
*
)
iface
;
ACLShellSource
*
This
=
impl_from_IACList2
(
iface
)
;
ULONG
ret
;
ret
=
InterlockedDecrement
(
&
This
->
refCount
);
...
...
@@ -94,7 +99,7 @@ static ULONG WINAPI ACLShellSource_Release(IACList2 *iface)
static
HRESULT
WINAPI
ACLShellSource_Expand
(
IACList2
*
iface
,
LPCWSTR
wstr
)
{
ACLShellSource
*
This
=
(
ACLShellSource
*
)
iface
;
ACLShellSource
*
This
=
impl_from_IACList2
(
iface
)
;
FIXME
(
"STUB:(%p) %s
\n
"
,
This
,
debugstr_w
(
wstr
));
return
E_NOTIMPL
;
}
...
...
@@ -103,7 +108,7 @@ static HRESULT WINAPI ACLShellSource_Expand(IACList2 *iface, LPCWSTR wstr)
static
HRESULT
WINAPI
ACLShellSource_GetOptions
(
IACList2
*
iface
,
DWORD
*
pdwFlag
)
{
ACLShellSource
*
This
=
(
ACLShellSource
*
)
iface
;
ACLShellSource
*
This
=
impl_from_IACList2
(
iface
)
;
*
pdwFlag
=
This
->
dwOptions
;
return
S_OK
;
}
...
...
@@ -111,7 +116,7 @@ static HRESULT WINAPI ACLShellSource_GetOptions(IACList2 *iface,
static
HRESULT
WINAPI
ACLShellSource_SetOptions
(
IACList2
*
iface
,
DWORD
dwFlag
)
{
ACLShellSource
*
This
=
(
ACLShellSource
*
)
iface
;
ACLShellSource
*
This
=
impl_from_IACList2
(
iface
)
;
This
->
dwOptions
=
dwFlag
;
return
S_OK
;
}
...
...
@@ -138,7 +143,7 @@ HRESULT ACLShellSource_Constructor(IUnknown *pUnkOuter, IUnknown **ppOut)
if
(
This
==
NULL
)
return
E_OUTOFMEMORY
;
This
->
acl2
Vtbl
=
&
ACLMulti_ACList2Vtbl
;
This
->
IACList2_iface
.
lp
Vtbl
=
&
ACLMulti_ACList2Vtbl
;
This
->
refCount
=
1
;
TRACE
(
"returning %p
\n
"
,
This
);
...
...
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