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
4c92ba22
Commit
4c92ba22
authored
Jan 03, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Declare some functions static.
parent
9a080691
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
10 deletions
+3
-10
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+0
-7
module.c
dlls/dbghelp/module.c
+2
-2
storage.c
dlls/dbghelp/storage.c
+1
-1
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
4c92ba22
...
...
@@ -91,7 +91,6 @@ void hash_table_init(struct pool* pool, 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_find
(
const
struct
hash_table
*
ht
,
const
char
*
name
);
unsigned
hash_table_hash
(
const
char
*
name
,
unsigned
num_buckets
);
struct
hash_table_iter
{
...
...
@@ -439,9 +438,6 @@ extern struct module*
module_find_by_addr
(
const
struct
process
*
pcs
,
unsigned
long
addr
,
enum
module_type
type
);
extern
struct
module
*
module_find_by_name
(
const
struct
process
*
pcs
,
const
WCHAR
*
name
);
extern
struct
module
*
module_find_by_nameA
(
const
struct
process
*
pcs
,
const
char
*
name
);
extern
struct
module
*
...
...
@@ -454,9 +450,6 @@ extern struct module*
unsigned
long
addr
,
unsigned
long
size
,
unsigned
long
stamp
,
unsigned
long
checksum
);
extern
struct
module
*
module_get_container
(
const
struct
process
*
pcs
,
const
struct
module
*
inner
);
extern
struct
module
*
module_get_containee
(
const
struct
process
*
pcs
,
const
struct
module
*
inner
);
extern
enum
module_type
...
...
dlls/dbghelp/module.c
View file @
4c92ba22
...
...
@@ -188,7 +188,7 @@ struct module* module_new(struct process* pcs, const WCHAR* name,
* module_find_by_name
*
*/
struct
module
*
module_find_by_name
(
const
struct
process
*
pcs
,
const
WCHAR
*
name
)
st
atic
st
ruct
module
*
module_find_by_name
(
const
struct
process
*
pcs
,
const
WCHAR
*
name
)
{
struct
module
*
module
;
...
...
@@ -238,7 +238,7 @@ struct module* module_is_already_loaded(const struct process* pcs, const WCHAR*
* module_get_container
*
*/
st
ruct
module
*
module_get_container
(
const
struct
process
*
pcs
,
st
atic
struct
module
*
module_get_container
(
const
struct
process
*
pcs
,
const
struct
module
*
inner
)
{
struct
module
*
module
;
...
...
dlls/dbghelp/storage.c
View file @
4c92ba22
...
...
@@ -298,7 +298,7 @@ unsigned sparse_array_length(const struct sparse_array* sa)
return
sa
->
elements
.
num_elts
;
}
unsigned
hash_table_hash
(
const
char
*
name
,
unsigned
num_buckets
)
static
unsigned
hash_table_hash
(
const
char
*
name
,
unsigned
num_buckets
)
{
unsigned
hash
=
0
;
while
(
*
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