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
645d76f8
Commit
645d76f8
authored
Apr 18, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Apr 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Constify some variables.
parent
a7638ac5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
msc.c
dlls/dbghelp/msc.c
+5
-4
No files found.
dlls/dbghelp/msc.c
View file @
645d76f8
...
@@ -321,7 +321,7 @@ struct codeview_type_parse
...
@@ -321,7 +321,7 @@ struct codeview_type_parse
DWORD
num
;
DWORD
num
;
};
};
static
inline
const
void
*
codeview_jump_to_type
(
struct
codeview_type_parse
*
ctp
,
DWORD
idx
)
static
inline
const
void
*
codeview_jump_to_type
(
const
struct
codeview_type_parse
*
ctp
,
DWORD
idx
)
{
{
if
(
idx
<
FIRST_DEFINABLE_TYPE
)
return
NULL
;
if
(
idx
<
FIRST_DEFINABLE_TYPE
)
return
NULL
;
idx
-=
FIRST_DEFINABLE_TYPE
;
idx
-=
FIRST_DEFINABLE_TYPE
;
...
@@ -1926,7 +1926,7 @@ static HANDLE open_pdb_file(const struct process* pcs,
...
@@ -1926,7 +1926,7 @@ static HANDLE open_pdb_file(const struct process* pcs,
}
}
static
void
pdb_process_types
(
const
struct
msc_debug_info
*
msc_dbg
,
static
void
pdb_process_types
(
const
struct
msc_debug_info
*
msc_dbg
,
const
char
*
image
,
struct
pdb_lookup
*
pdb_lookup
)
const
char
*
image
,
const
struct
pdb_lookup
*
pdb_lookup
)
{
{
BYTE
*
types_image
=
NULL
;
BYTE
*
types_image
=
NULL
;
...
@@ -2098,9 +2098,10 @@ static BOOL pdb_process_internal(const struct process* pcs,
...
@@ -2098,9 +2098,10 @@ static BOOL pdb_process_internal(const struct process* pcs,
static
void
pdb_process_symbol_imports
(
const
struct
process
*
pcs
,
static
void
pdb_process_symbol_imports
(
const
struct
process
*
pcs
,
const
struct
msc_debug_info
*
msc_dbg
,
const
struct
msc_debug_info
*
msc_dbg
,
PDB_SYMBOLS
*
symbols
,
const
PDB_SYMBOLS
*
symbols
,
const
void
*
symbols_image
,
const
void
*
symbols_image
,
char
*
image
,
struct
pdb_lookup
*
pdb_lookup
,
const
char
*
image
,
const
struct
pdb_lookup
*
pdb_lookup
,
unsigned
module_index
)
unsigned
module_index
)
{
{
if
(
module_index
==
-
1
&&
symbols
&&
symbols
->
pdbimport_size
)
if
(
module_index
==
-
1
&&
symbols
&&
symbols
->
pdbimport_size
)
...
...
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