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
ba5efc6c
Commit
ba5efc6c
authored
Jun 10, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imagehlp: Remove the unused internal.c file.
parent
cfc6c489
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
126 deletions
+0
-126
Makefile.in
dlls/imagehlp/Makefile.in
+0
-1
internal.c
dlls/imagehlp/internal.c
+0
-125
No files found.
dlls/imagehlp/Makefile.in
View file @
ba5efc6c
...
...
@@ -11,7 +11,6 @@ C_SRCS = \
access.c
\
imagehlp_main.c
\
integrity.c
\
internal.c
\
modify.c
@MAKE_DLL_RULES@
...
...
dlls/imagehlp/internal.c
deleted
100644 → 0
View file @
cfc6c489
/*
* IMAGEHLP library
*
* Copyright 1998 Patrik Stridvall
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "wine/debug.h"
#include "imagehlp.h"
/***********************************************************************
* InitializeListHead
*/
VOID
InitializeListHead
(
PLIST_ENTRY
pListHead
)
{
pListHead
->
Flink
=
pListHead
;
pListHead
->
Blink
=
pListHead
;
}
/***********************************************************************
* InsertHeadList
*/
VOID
InsertHeadList
(
PLIST_ENTRY
pListHead
,
PLIST_ENTRY
pEntry
)
{
pEntry
->
Blink
=
pListHead
;
pEntry
->
Flink
=
pListHead
->
Flink
;
pListHead
->
Flink
=
pEntry
;
}
/***********************************************************************
* InsertTailList
*/
VOID
InsertTailList
(
PLIST_ENTRY
pListHead
,
PLIST_ENTRY
pEntry
)
{
pEntry
->
Flink
=
pListHead
;
pEntry
->
Blink
=
pListHead
->
Blink
;
pListHead
->
Blink
=
pEntry
;
}
/***********************************************************************
* IsListEmpty
*/
BOOLEAN
IsListEmpty
(
PLIST_ENTRY
pListHead
)
{
return
!
pListHead
;
}
/***********************************************************************
* PopEntryList
*/
PSINGLE_LIST_ENTRY
PopEntryList
(
PSINGLE_LIST_ENTRY
pListHead
)
{
pListHead
->
Next
=
NULL
;
return
pListHead
;
}
/***********************************************************************
* PushEntryList
*/
VOID
PushEntryList
(
PSINGLE_LIST_ENTRY
pListHead
,
PSINGLE_LIST_ENTRY
pEntry
)
{
pEntry
->
Next
=
pListHead
;
}
/***********************************************************************
* RemoveEntryList
*/
VOID
RemoveEntryList
(
PLIST_ENTRY
pEntry
)
{
pEntry
->
Flink
->
Blink
=
pEntry
->
Blink
;
pEntry
->
Blink
->
Flink
=
pEntry
->
Flink
;
pEntry
->
Flink
=
NULL
;
pEntry
->
Blink
=
NULL
;
}
/***********************************************************************
* RemoveHeadList
*/
PLIST_ENTRY
RemoveHeadList
(
PLIST_ENTRY
pListHead
)
{
PLIST_ENTRY
p
=
pListHead
->
Flink
;
if
(
p
!=
pListHead
)
{
RemoveEntryList
(
pListHead
);
return
p
;
}
else
{
pListHead
->
Flink
=
NULL
;
pListHead
->
Blink
=
NULL
;
return
NULL
;
}
}
/***********************************************************************
* RemoveTailList
*/
PLIST_ENTRY
RemoveTailList
(
PLIST_ENTRY
pListHead
)
{
RemoveHeadList
(
pListHead
->
Blink
);
if
(
pListHead
!=
pListHead
->
Blink
)
return
pListHead
;
else
return
NULL
;
}
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