Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
71abef09
Commit
71abef09
authored
Jan 31, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Be consistent in naming regarding MSF's block.
No longer calling it sometimes 'page'. Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
d970584b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
msc.c
dlls/dbghelp/msc.c
+1
-1
mscvpdb.h
include/wine/mscvpdb.h
+2
-2
pdb.c
tools/winedump/pdb.c
+6
-6
No files found.
dlls/dbghelp/msc.c
View file @
71abef09
...
...
@@ -3555,7 +3555,7 @@ static BOOL pdb_init(const struct pdb_lookup* pdb_lookup, struct pdb_file_info*
struct
PDB_DS_ROOT
*
root
;
pdb_file
->
u
.
ds
.
toc
=
pdb_ds_read
(
pdb
,
(
const
UINT
*
)((
const
char
*
)
pdb
+
pdb
->
toc_
page
*
pdb
->
block_size
),
pdb_ds_read
(
pdb
,
(
const
UINT
*
)((
const
char
*
)
pdb
+
pdb
->
toc_
block
*
pdb
->
block_size
),
pdb
->
toc_size
);
root
=
pdb_read_ds_file
(
pdb
,
pdb_file
->
u
.
ds
.
toc
,
1
);
if
(
!
root
)
...
...
include/wine/mscvpdb.h
View file @
71abef09
...
...
@@ -2398,10 +2398,10 @@ struct PDB_DS_HEADER
char
signature
[
32
];
unsigned
int
block_size
;
unsigned
int
unknown1
;
unsigned
int
num_
page
s
;
unsigned
int
num_
block
s
;
unsigned
int
toc_size
;
unsigned
int
unknown2
;
unsigned
int
toc_
page
;
unsigned
int
toc_
block
;
};
struct
PDB_JG_TOC
...
...
tools/winedump/pdb.c
View file @
71abef09
...
...
@@ -1120,7 +1120,7 @@ static BOOL pdb_ds_init(struct pdb_reader* reader)
if
(
!
reader
->
u
.
ds
.
header
)
return
FALSE
;
reader
->
read_file
=
pdb_ds_read_file
;
reader
->
u
.
ds
.
toc
=
pdb_ds_read
(
reader
->
u
.
ds
.
header
,
(
const
UINT
*
)((
const
char
*
)
reader
->
u
.
ds
.
header
+
reader
->
u
.
ds
.
header
->
toc_
page
*
reader
->
u
.
ds
.
header
->
block_size
),
(
const
UINT
*
)((
const
char
*
)
reader
->
u
.
ds
.
header
+
reader
->
u
.
ds
.
header
->
toc_
block
*
reader
->
u
.
ds
.
header
->
block_size
),
reader
->
u
.
ds
.
header
->
toc_size
);
memset
(
reader
->
file_used
,
0
,
sizeof
(
reader
->
file_used
));
return
TRUE
;
...
...
@@ -1137,20 +1137,20 @@ static void pdb_ds_dump(void)
"
\t
signature: %.*s
\n
"
"
\t
block_size: %08x
\n
"
"
\t
unknown1: %08x
\n
"
"
\t
num_
pages:
%08x
\n
"
"
\t
num_
blocks:
%08x
\n
"
"
\t
toc_size: %08x
\n
"
"
\t
unknown2: %08x
\n
"
"
\t
toc_
page:
%08x
\n
"
,
"
\t
toc_
block:
%08x
\n
"
,
(
int
)
sizeof
(
pdb7
)
-
1
,
reader
.
u
.
ds
.
header
->
signature
,
reader
.
u
.
ds
.
header
->
block_size
,
reader
.
u
.
ds
.
header
->
unknown1
,
reader
.
u
.
ds
.
header
->
num_
page
s
,
reader
.
u
.
ds
.
header
->
num_
block
s
,
reader
.
u
.
ds
.
header
->
toc_size
,
reader
.
u
.
ds
.
header
->
unknown2
,
reader
.
u
.
ds
.
header
->
toc_
page
);
reader
.
u
.
ds
.
header
->
toc_
block
);
/* files with static indexes:
* 0: JG says old toc
page
s
* 0: JG says old toc
block
s
* 1: root structure
* 2: types
* 3: modules
...
...
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