Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
4c92ba22
Commit
4c92ba22
authored
16 years ago
by
Andrew Talbot
Committed by
Alexandre Julliard
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
dbghelp: Declare some functions static.
parent
9a080691
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/dbghelp/dbghelp_private.h
+0
-7
0 additions, 7 deletions
dlls/dbghelp/dbghelp_private.h
dlls/dbghelp/module.c
+2
-2
2 additions, 2 deletions
dlls/dbghelp/module.c
dlls/dbghelp/storage.c
+1
-1
1 addition, 1 deletion
dlls/dbghelp/storage.c
with
3 additions
and
10 deletions
dlls/dbghelp/dbghelp_private.h
+
0
−
7
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
{
...
...
@@ -438,9 +437,6 @@ extern const WCHAR S_SlashW[];
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
);
...
...
@@ -453,9 +449,6 @@ extern struct module*
enum
module_type
type
,
BOOL
virtual
,
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
);
...
...
This diff is collapsed.
Click to expand it.
dlls/dbghelp/module.c
+
2
−
2
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
)
static
struct
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
*
*/
struct
module
*
module_get_container
(
const
struct
process
*
pcs
,
static
struct
module
*
module_get_container
(
const
struct
process
*
pcs
,
const
struct
module
*
inner
)
{
struct
module
*
module
;
...
...
This diff is collapsed.
Click to expand it.
dlls/dbghelp/storage.c
+
1
−
1
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment