Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cafe24b3
Commit
cafe24b3
authored
Jun 14, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix the prototype of some callbacks.
parent
4dace74b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
dbghelp.h
include/dbghelp.h
+3
-3
No files found.
include/dbghelp.h
View file @
cafe24b3
...
...
@@ -754,11 +754,11 @@ BOOL WINAPI MiniDumpReadDumpStream(PVOID, ULONG, PMINIDUMP_DIRECTORY*, PVOID*,
#define SLMFLAG_VIRTUAL 0x1
#define SLMFLAG_NO_SYMBOLS 0x4
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK
)(
PSTR
,
DWORD
,
ULONG
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK
)(
PSTR
,
ULONG
,
ULONG
,
PVOID
);
BOOL
WINAPI
EnumerateLoadedModules
(
HANDLE
,
PENUMLOADED_MODULES_CALLBACK
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK64
)(
PSTR
,
DWORD
,
ULONG64
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PENUMLOADED_MODULES_CALLBACK64
)(
PSTR
,
DWORD
64
,
ULONG
,
PVOID
);
BOOL
WINAPI
EnumerateLoadedModules64
(
HANDLE
,
PENUMLOADED_MODULES_CALLBACK64
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PSYM_ENUMMODULES_CALLBACK
)(
PSTR
,
DWORD
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PSYM_ENUMMODULES_CALLBACK
)(
PSTR
,
ULONG
,
PVOID
);
BOOL
WINAPI
SymEnumerateModules
(
HANDLE
,
PSYM_ENUMMODULES_CALLBACK
,
PVOID
);
typedef
BOOL
(
CALLBACK
*
PSYM_ENUMMODULES_CALLBACK64
)(
PSTR
,
DWORD64
,
PVOID
);
BOOL
WINAPI
SymEnumerateModules64
(
HANDLE
,
PSYM_ENUMMODULES_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