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
2f0ed90c
Commit
2f0ed90c
authored
Feb 21, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Implemented SymFindFileInPathW.
parent
9e1f9ec1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
4 deletions
+7
-4
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
msc.c
dlls/dbghelp/msc.c
+1
-1
path.c
dlls/dbghelp/path.c
+0
-0
pe_module.c
dlls/dbghelp/pe_module.c
+1
-1
dbghelp.h
include/dbghelp.h
+4
-1
No files found.
dlls/dbghelp/dbghelp.spec
View file @
2f0ed90c
...
...
@@ -54,7 +54,7 @@
@ stub SymFindDebugInfoFile
@ stub SymFindDebugInfoFileW
@ stdcall SymFindFileInPath(long str str ptr long long long ptr ptr ptr)
@ st
ub SymFindFileInPathW
@ st
dcall SymFindFileInPathW(long wstr wstr ptr long long long ptr ptr ptr)
@ stdcall SymFromAddr(ptr double ptr ptr)
@ stdcall SymFromAddrW(ptr double ptr ptr)
@ stub SymFromIndex
...
...
dlls/dbghelp/msc.c
View file @
2f0ed90c
...
...
@@ -1856,7 +1856,7 @@ static void pdb_convert_symbol_file(const PDB_SYMBOLS* symbols,
}
}
static
BOOL
CALLBACK
pdb_match
(
char
*
file
,
void
*
user
)
static
BOOL
CALLBACK
pdb_match
(
c
onst
c
har
*
file
,
void
*
user
)
{
/* accept first file that exists */
HANDLE
h
=
CreateFileA
(
file
,
GENERIC_READ
,
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
FILE_ATTRIBUTE_NORMAL
,
NULL
);
...
...
dlls/dbghelp/path.c
View file @
2f0ed90c
This diff is collapsed.
Click to expand it.
dlls/dbghelp/pe_module.c
View file @
2f0ed90c
...
...
@@ -77,7 +77,7 @@ static BOOL pe_load_stabs(const struct process* pcs, struct module* module,
return
ret
;
}
static
BOOL
CALLBACK
dbg_match
(
char
*
file
,
void
*
user
)
static
BOOL
CALLBACK
dbg_match
(
c
onst
c
har
*
file
,
void
*
user
)
{
/* accept first file */
return
FALSE
;
...
...
include/dbghelp.h
View file @
2f0ed90c
...
...
@@ -999,9 +999,12 @@ BOOL WINAPI SymCleanup(HANDLE);
HANDLE
WINAPI
FindDebugInfoFile
(
PCSTR
,
PCSTR
,
PSTR
);
typedef
BOOL
(
CALLBACK
*
PFIND_DEBUG_FILE_CALLBACK
)(
HANDLE
,
PSTR
,
PVOID
);
HANDLE
WINAPI
FindDebugInfoFileEx
(
PCSTR
,
PCSTR
,
PSTR
,
PFIND_DEBUG_FILE_CALLBACK
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PFINDFILEINPATHCALLBACK
)(
PSTR
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PFINDFILEINPATHCALLBACK
)(
P
C
STR
,
PVOID
);
BOOL
WINAPI
SymFindFileInPath
(
HANDLE
,
PCSTR
,
PCSTR
,
PVOID
,
DWORD
,
DWORD
,
DWORD
,
PSTR
,
PFINDFILEINPATHCALLBACK
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PFINDFILEINPATHCALLBACKW
)(
PCWSTR
,
PVOID
);
BOOL
WINAPI
SymFindFileInPathW
(
HANDLE
,
PCWSTR
,
PCWSTR
,
PVOID
,
DWORD
,
DWORD
,
DWORD
,
PWSTR
,
PFINDFILEINPATHCALLBACKW
,
PVOID
);
HANDLE
WINAPI
FindExecutableImage
(
PCSTR
,
PCSTR
,
PSTR
);
typedef
BOOL
(
CALLBACK
*
PFIND_EXE_FILE_CALLBACK
)(
HANDLE
,
PSTR
,
PVOID
);
HANDLE
WINAPI
FindExecutableImageEx
(
PCSTR
,
PCSTR
,
PSTR
,
PFIND_EXE_FILE_CALLBACK
,
PVOID
);
...
...
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