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
5b60142f
Commit
5b60142f
authored
Feb 04, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Remove unused function.
parent
75572fdb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+0
-1
storage.c
dlls/dbghelp/storage.c
+0
-12
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
5b60142f
...
@@ -92,7 +92,6 @@ void hash_table_init(struct pool* pool, struct hash_table* ht,
...
@@ -92,7 +92,6 @@ void hash_table_init(struct pool* pool, struct hash_table* ht,
unsigned
num_buckets
);
unsigned
num_buckets
);
void
hash_table_destroy
(
struct
hash_table
*
ht
);
void
hash_table_destroy
(
struct
hash_table
*
ht
);
void
hash_table_add
(
struct
hash_table
*
ht
,
struct
hash_table_elt
*
elt
);
void
hash_table_add
(
struct
hash_table
*
ht
,
struct
hash_table_elt
*
elt
);
void
*
hash_table_find
(
const
struct
hash_table
*
ht
,
const
char
*
name
);
struct
hash_table_iter
struct
hash_table_iter
{
{
...
...
dlls/dbghelp/storage.c
View file @
5b60142f
...
@@ -396,18 +396,6 @@ void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt)
...
@@ -396,18 +396,6 @@ void hash_table_add(struct hash_table* ht, struct hash_table_elt* elt)
ht
->
num_elts
++
;
ht
->
num_elts
++
;
}
}
void
*
hash_table_find
(
const
struct
hash_table
*
ht
,
const
char
*
name
)
{
unsigned
hash
=
hash_table_hash
(
name
,
ht
->
num_buckets
);
struct
hash_table_elt
*
elt
;
if
(
!
ht
->
buckets
)
return
NULL
;
for
(
elt
=
ht
->
buckets
[
hash
];
elt
;
elt
=
elt
->
next
)
if
(
!
strcmp
(
name
,
elt
->
name
))
return
elt
;
return
NULL
;
}
void
hash_table_iter_init
(
const
struct
hash_table
*
ht
,
void
hash_table_iter_init
(
const
struct
hash_table
*
ht
,
struct
hash_table_iter
*
hti
,
const
char
*
name
)
struct
hash_table_iter
*
hti
,
const
char
*
name
)
{
{
...
...
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