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
d81f55fa
Commit
d81f55fa
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: Get rid of a local typedef for a struct.
parent
8d1fc3b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
10 deletions
+9
-10
enumidlist.c
dlls/shell32/enumidlist.c
+9
-10
No files found.
dlls/shell32/enumidlist.c
View file @
d81f55fa
...
...
@@ -36,20 +36,19 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
shell
);
typedef
struct
tagENUMLIST
struct
enumlist
{
struct
tagENUMLIST
*
pNext
;
struct
enumlist
*
pNext
;
LPITEMIDLIST
pidl
;
}
ENUMLIST
,
*
LPENUMLIST
;
};
typedef
struct
{
IEnumIDList
IEnumIDList_iface
;
LONG
ref
;
LPENUMLIST
mpFirst
;
LPENUMLIST
mpLast
;
LPENUMLIST
mpCurrent
;
struct
enumlist
*
mpFirst
;
struct
enumlist
*
mpLast
;
struct
enumlist
*
mpCurrent
;
}
IEnumIDListImpl
;
...
...
@@ -62,14 +61,14 @@ BOOL AddToEnumList(
{
IEnumIDListImpl
*
This
=
(
IEnumIDListImpl
*
)
iface
;
LPENUMLIST
pNew
;
struct
enumlist
*
pNew
;
TRACE
(
"(%p)->(pidl=%p)
\n
"
,
This
,
pidl
);
if
(
!
iface
||
!
pidl
)
return
FALSE
;
pNew
=
SHAlloc
(
sizeof
(
ENUMLIST
));
pNew
=
SHAlloc
(
sizeof
(
*
pNew
));
if
(
pNew
)
{
/*set the next pointer */
...
...
@@ -164,7 +163,7 @@ BOOL CreateFolderEnumList(
static
BOOL
DeleteList
(
IEnumIDListImpl
*
This
)
{
LPENUMLIST
pDelete
;
struct
enumlist
*
pDelete
;
TRACE
(
"(%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