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
6c3667ad
Commit
6c3667ad
authored
Aug 12, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskmgr: Write-strings warnings fix.
parent
198bdd42
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
dbgchnl.c
programs/taskmgr/dbgchnl.c
+3
-3
No files found.
programs/taskmgr/dbgchnl.c
View file @
6c3667ad
...
...
@@ -53,9 +53,9 @@
static
DWORD
(
WINAPI
*
pSymSetOptions
)(
DWORD
);
static
BOOL
(
WINAPI
*
pSymInitialize
)(
HANDLE
,
PSTR
,
BOOL
);
static
DWORD
(
WINAPI
*
pSymLoadModule
)(
HANDLE
,
HANDLE
,
P
STR
,
P
STR
,
DWORD
,
DWORD
);
static
DWORD
(
WINAPI
*
pSymLoadModule
)(
HANDLE
,
HANDLE
,
P
CSTR
,
PC
STR
,
DWORD
,
DWORD
);
static
BOOL
(
WINAPI
*
pSymCleanup
)(
HANDLE
);
static
BOOL
(
WINAPI
*
pSymFromName
)(
HANDLE
,
LP
STR
,
PSYMBOL_INFO
);
static
BOOL
(
WINAPI
*
pSymFromName
)(
HANDLE
,
PC
STR
,
PSYMBOL_INFO
);
BOOL
AreDebugChannelsSupported
(
void
)
{
...
...
@@ -158,7 +158,7 @@ static int change_channel_CB(HANDLE hProcess, void* addr, struct __wine_debug_ch
return
1
;
}
static
void
*
get_symbol
(
HANDLE
hProcess
,
c
har
*
name
,
char
*
lib
)
static
void
*
get_symbol
(
HANDLE
hProcess
,
c
onst
char
*
name
,
const
char
*
lib
)
{
char
buffer
[
sizeof
(
IMAGEHLP_SYMBOL
)
+
256
];
SYMBOL_INFO
*
si
=
(
SYMBOL_INFO
*
)
buffer
;
...
...
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