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
a399e3bc
Commit
a399e3bc
authored
Sep 18, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix the PENUMLOADED_MODULES_CALLBACK() prototype.
parent
4040ecee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dbghelp.c
dlls/dbghelp/dbghelp.c
+1
-1
dbghelp.h
include/dbghelp.h
+1
-1
No files found.
dlls/dbghelp/dbghelp.c
View file @
a399e3bc
...
...
@@ -211,7 +211,7 @@ BOOL WINAPI SymGetSearchPath(HANDLE hProcess, PSTR szSearchPath,
* SymInitialize helper: loads in dbghelp all known (and loaded modules)
* this assumes that hProcess is a handle on a valid process
*/
static
BOOL
WINAPI
process_invade_cb
(
char
*
name
,
DWORD
base
,
DWORD
size
,
void
*
user
)
static
BOOL
WINAPI
process_invade_cb
(
PCSTR
name
,
ULONG
base
,
ULONG
size
,
PVOID
user
)
{
char
tmp
[
MAX_PATH
];
HANDLE
hProcess
=
(
HANDLE
)
user
;
...
...
include/dbghelp.h
View file @
a399e3bc
...
...
@@ -792,7 +792,7 @@ BOOL WINAPI MiniDumpReadDumpStream(PVOID, ULONG, PMINIDUMP_DIRECTORY*, PVOID*,
#define SLMFLAG_VIRTUAL 0x1
#define SLMFLAG_NO_SYMBOLS 0x4
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK
)(
PSTR
,
ULONG
,
ULONG
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK
)(
P
C
STR
,
ULONG
,
ULONG
,
PVOID
);
BOOL
WINAPI
EnumerateLoadedModules
(
HANDLE
,
PENUMLOADED_MODULES_CALLBACK
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK64
)(
PCSTR
,
DWORD64
,
ULONG
,
PVOID
);
BOOL
WINAPI
EnumerateLoadedModules64
(
HANDLE
,
PENUMLOADED_MODULES_CALLBACK64
,
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