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
f824a72c
Commit
f824a72c
authored
Feb 25, 2024
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 05, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Get rid of struct pdb_lookup.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
feee77f8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
14 deletions
+4
-14
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+0
-11
msc.c
dlls/dbghelp/msc.c
+0
-0
path.c
dlls/dbghelp/tests/path.c
+4
-3
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
f824a72c
...
...
@@ -548,17 +548,6 @@ struct module_pair
struct
module
*
effective
;
/* out: module with debug info */
};
enum
pdb_kind
{
PDB_JG
,
PDB_DS
};
struct
pdb_lookup
{
const
char
*
filename
;
enum
pdb_kind
kind
;
unsigned
int
age
;
unsigned
int
timestamp
;
GUID
guid
;
};
struct
cpu_stack_walk
{
HANDLE
hProcess
;
...
...
dlls/dbghelp/msc.c
View file @
f824a72c
This diff is collapsed.
Click to expand it.
dlls/dbghelp/tests/path.c
View file @
f824a72c
...
...
@@ -1583,7 +1583,7 @@ static void test_load_modules_path(void)
}
else
{
todo_wine
todo_wine
_if
(
i
==
4
||
i
==
5
||
i
==
7
||
i
==
8
||
i
==
11
)
ok
(
im
.
SymType
==
SymPdb
,
"Unexpected symtype %x
\n
"
,
im
.
SymType
);
make_path
(
filename
,
topdir
,
NULL
,
test_files
[
test
->
found_file
].
module_path
);
todo_wine
...
...
@@ -1595,7 +1595,7 @@ static void test_load_modules_path(void)
todo_wine_if
(
i
==
11
)
ok
(
im
.
PdbUnmatched
==
!
(
test_files
[
test
->
found_file
].
age_or_timestamp
==
0x0030cafe
),
"Expecting matched PDB
\n
"
);
}
todo_wine
todo_wine
_if
(
i
==
4
||
i
==
5
||
i
==
7
||
i
==
8
||
i
==
9
||
i
==
10
||
i
==
11
||
i
==
13
||
i
==
18
||
i
==
19
)
ok
(
IsEqualGUID
(
&
im
.
PdbSig70
,
&
guid1
),
"Unexpected PDB GUID
\n
"
);
ret
=
SymCleanup
(
dummy
);
ok
(
ret
,
"SymCleanup failed: %lu
\n
"
,
GetLastError
());
...
...
@@ -1811,8 +1811,9 @@ static void test_load_modules_details(void)
todo_wine_if
(
test
->
options
&
SYMOPT_DEFERRED_LOADS
)
ok
(
!
wcsicmp
(
im
.
LoadedImageName
,
(
test
->
options
&
SYMOPT_DEFERRED_LOADS
)
?
L""
:
loaded_img_name
),
"Unexpected loaded image name '%ls' (%ls)
\n
"
,
im
.
LoadedImageName
,
loaded_img_name
);
todo_wine_if
(
i
==
3
||
i
==
4
||
i
==
6
||
i
==
8
||
i
==
1
0
||
i
==
1
2
||
i
==
14
)
todo_wine_if
(
i
==
3
||
i
==
4
||
i
==
6
||
i
==
8
||
i
==
12
||
i
==
14
)
ok
(
im
.
SymType
==
test
->
sym_type
,
"Unexpected module type %u
\n
"
,
im
.
SymType
);
todo_wine_if
(
i
==
8
||
i
==
10
)
ok
(
!
im
.
TypeInfo
,
"No type info present
\n
"
);
if
(
test
->
mismatch_in
)
{
...
...
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