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
878ea7d9
Commit
878ea7d9
authored
Mar 30, 2013
by
Andrew Cook
Committed by
Alexandre Julliard
Apr 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Add stubs for SymSetHomeDirectory.
parent
31f8c51b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
2 deletions
+24
-2
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+2
-2
symbol.c
dlls/dbghelp/symbol.c
+22
-0
No files found.
dlls/dbghelp/dbghelp.spec
View file @
878ea7d9
...
...
@@ -153,8 +153,8 @@
@ stdcall SymSearch(long int64 long long str int64 ptr ptr long)
@ stdcall SymSearchW(long int64 long long wstr int64 ptr ptr long)
@ stdcall SymSetContext(long ptr ptr)
@ st
ub SymSetHomeDirectory
@ st
ub SymSetHomeDirectoryW
@ st
dcall SymSetHomeDirectory(long str)
@ st
dcall SymSetHomeDirectoryW(long wstr)
@ stdcall SymSetOptions(long)
@ stdcall SymSetParentWindow(long)
@ stdcall SymSetScopeFromAddr(ptr int64)
...
...
dlls/dbghelp/symbol.c
View file @
878ea7d9
...
...
@@ -2196,3 +2196,25 @@ BOOL WINAPI SymFromIndexW(HANDLE hProcess, ULONG64 BaseOfDll, DWORD index, PSYMB
return
FALSE
;
}
/******************************************************************
* SymSetHomeDirectory (DBGHELP.@)
*
*/
PCHAR
WINAPI
SymSetHomeDirectory
(
HANDLE
hProcess
,
PCSTR
dir
)
{
FIXME
(
"(%p, %s): stub
\n
"
,
hProcess
,
dir
);
return
NULL
;
}
/******************************************************************
* SymSetHomeDirectoryW (DBGHELP.@)
*
*/
PWSTR
WINAPI
SymSetHomeDirectoryW
(
HANDLE
hProcess
,
PCWSTR
dir
)
{
FIXME
(
"(%p, %s): stub
\n
"
,
hProcess
,
debugstr_w
(
dir
));
return
NULL
;
}
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