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
08ba9cec
Commit
08ba9cec
authored
May 10, 2006
by
Eric Pouech
Committed by
Alexandre Julliard
May 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Stubbed SymGetSourceFileTokenW.
parent
55f8a1b8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
source.c
dlls/dbghelp/source.c
+13
-0
dbghelp.h
include/dbghelp.h
+1
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
08ba9cec
...
...
@@ -94,7 +94,7 @@
@ stub SymGetSourceFileFromToken
@ stub SymGetSourceFileFromTokenW
@ stdcall SymGetSourceFileToken(ptr double str ptr ptr)
@ st
ub SymGetSourceFileTokenW
@ st
dcall SymGetSourceFileTokenW(ptr double wstr ptr ptr)
@ stub SymGetSourceFileW
@ stub SymGetSourceVarFromToken
@ stub SymGetSourceVarFromTokenW
...
...
dlls/dbghelp/source.c
View file @
08ba9cec
...
...
@@ -215,3 +215,16 @@ BOOL WINAPI SymGetSourceFileToken(HANDLE hProcess, ULONG64 base,
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
/******************************************************************
* SymGetSourceFileTokenW (DBGHELP.@)
*
*/
BOOL
WINAPI
SymGetSourceFileTokenW
(
HANDLE
hProcess
,
ULONG64
base
,
PCWSTR
src
,
PVOID
*
token
,
DWORD
*
size
)
{
FIXME
(
"%p %s %s %p %p: stub!
\n
"
,
hProcess
,
wine_dbgstr_longlong
(
base
),
debugstr_w
(
src
),
token
,
size
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
return
FALSE
;
}
include/dbghelp.h
View file @
08ba9cec
...
...
@@ -965,6 +965,7 @@ ULONG WINAPI SymGetFileLineOffsets64(HANDLE, LPSTR, LPSTR, PDWORD64, ULONG);
ULONG
WINAPI
SymGetFileLineOffsetsW64
(
HANDLE
,
PWCH
,
PWCH
,
PDWORD64
,
ULONG
);
BOOL
WINAPI
SymGetSourceFile
(
HANDLE
,
ULONG64
,
PCSTR
,
PCSTR
,
PSTR
,
DWORD
);
BOOL
WINAPI
SymGetSourceFileToken
(
HANDLE
,
ULONG64
,
PCSTR
,
PVOID
*
,
DWORD
*
);
BOOL
WINAPI
SymGetSourceFileTokenW
(
HANDLE
,
ULONG64
,
PCWSTR
,
PVOID
*
,
DWORD
*
);
BOOL
WINAPI
SymGetSourceFileFromToken
(
HANDLE
,
PVOID
,
PCSTR
,
PSTR
,
DWORD
);
BOOL
WINAPI
SymGetSourceVarFromToken
(
HANDLE
,
PVOID
,
PCSTR
,
PCSTR
,
PSTR
,
DWORD
);
...
...
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