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
8d1fc3b4
Commit
8d1fc3b4
authored
Oct 10, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shell32: Avoid the forward declaration of the IEnumIDList vtbl.
parent
b8638ef9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
25 deletions
+17
-25
enumidlist.c
dlls/shell32/enumidlist.c
+17
-25
No files found.
dlls/shell32/enumidlist.c
View file @
8d1fc3b4
...
...
@@ -53,8 +53,6 @@ typedef struct
}
IEnumIDListImpl
;
static
const
IEnumIDListVtbl
eidlvt
;
/**************************************************************************
* AddToEnumList()
*/
...
...
@@ -186,29 +184,6 @@ static inline IEnumIDListImpl *impl_from_IEnumIDList(IEnumIDList *iface)
}
/**************************************************************************
* IEnumIDList_Folder_Constructor
*
*/
IEnumIDList
*
IEnumIDList_Constructor
(
void
)
{
IEnumIDListImpl
*
lpeidl
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IEnumIDListImpl
));
if
(
lpeidl
)
{
lpeidl
->
ref
=
1
;
lpeidl
->
IEnumIDList_iface
.
lpVtbl
=
&
eidlvt
;
}
else
return
NULL
;
TRACE
(
"-- (%p)->()
\n
"
,
lpeidl
);
return
&
lpeidl
->
IEnumIDList_iface
;
}
/**************************************************************************
* IEnumIDList::QueryInterface
*/
static
HRESULT
WINAPI
IEnumIDList_fnQueryInterface
(
IEnumIDList
*
iface
,
REFIID
riid
,
void
**
ppvObj
)
...
...
@@ -365,3 +340,20 @@ static const IEnumIDListVtbl eidlvt =
IEnumIDList_fnReset
,
IEnumIDList_fnClone
,
};
IEnumIDList
*
IEnumIDList_Constructor
(
void
)
{
IEnumIDListImpl
*
lpeidl
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
*
lpeidl
));
if
(
lpeidl
)
{
lpeidl
->
ref
=
1
;
lpeidl
->
IEnumIDList_iface
.
lpVtbl
=
&
eidlvt
;
}
else
return
NULL
;
TRACE
(
"-- (%p)->()
\n
"
,
lpeidl
);
return
&
lpeidl
->
IEnumIDList_iface
;
}
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