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
64513439
Commit
64513439
authored
May 07, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
May 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Stub for SymGetSourceFileToken.
parent
a49adbc4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
source.c
dlls/dbghelp/source.c
+13
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
64513439
...
...
@@ -64,7 +64,7 @@
@ stdcall SymGetOptions()
@ stdcall SymGetSearchPath(long str long)
@ stub SymGetSourceFileFromToken
@ st
ub SymGetSourceFileToken
@ st
dcall SymGetSourceFileToken(ptr double str ptr ptr)
@ stub SymGetSourceVarFromToken
@ stub SymGetSymFromAddr64
@ stdcall SymGetSymFromAddr(long long ptr ptr)
...
...
dlls/dbghelp/source.c
View file @
64513439
...
...
@@ -202,3 +202,16 @@ BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
}
return
TRUE
;
}
/******************************************************************
* SymGetSourceFileToken (DBGHELP.@)
*
*/
BOOL
WINAPI
SymGetSourceFileToken
(
HANDLE
hProcess
,
ULONG64
base
,
PCSTR
src
,
PVOID
*
token
,
DWORD
*
size
)
{
FIXME
(
"%p %s %s %p %p: stub!
\n
"
,
hProcess
,
wine_dbgstr_longlong
(
base
),
debugstr_a
(
src
),
token
,
size
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
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