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
f2460876
Commit
f2460876
authored
Aug 09, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead code.
parent
dbb3e147
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
charlist.c
dlls/richedit/charlist.c
+0
-24
charlist.h
dlls/richedit/charlist.h
+0
-1
No files found.
dlls/richedit/charlist.c
View file @
f2460876
...
...
@@ -56,29 +56,6 @@ void CHARLIST_Enqueue( CHARLIST* pCharList, char myChar )
pCharList
->
nCount
++
;
}
void
CHARLIST_Push
(
CHARLIST
*
pCharList
,
char
myChar
)
{
CHARLISTENTRY
*
pNewEntry
=
malloc
(
sizeof
(
CHARLISTENTRY
));
TRACE
(
"
\n
"
);
pNewEntry
->
myChar
=
myChar
;
if
(
pCharList
->
pHead
==
NULL
)
{
pCharList
->
pHead
=
pCharList
->
pTail
=
pNewEntry
;
pNewEntry
->
pNext
=
NULL
;
}
else
{
pNewEntry
->
pNext
=
pCharList
->
pHead
;
pCharList
->
pHead
=
pNewEntry
;
}
pCharList
->
nCount
++
;
}
char
CHARLIST_Dequeue
(
CHARLIST
*
pCharList
)
{
CHARLISTENTRY
*
pCurrent
;
...
...
@@ -151,4 +128,3 @@ int CHARLIST_toBuffer(CHARLIST* pCharList, char* pBuffer, int nBufferSize)
return
0
;
}
dlls/richedit/charlist.h
View file @
f2460876
...
...
@@ -36,7 +36,6 @@ typedef struct _tagCHARLIST
void
CHARLIST_Enqueue
(
CHARLIST
*
pCharList
,
char
myChar
);
void
CHARLIST_Push
(
CHARLIST
*
pCharList
,
char
myChar
);
char
CHARLIST_Dequeue
(
CHARLIST
*
pCharList
);
int
CHARLIST_GetNbItems
(
CHARLIST
*
pCharList
);
void
CHARLIST_FreeList
(
CHARLIST
*
pCharList
);
...
...
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