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
9c324680
Commit
9c324680
authored
Oct 21, 2004
by
Francois Gouget
Committed by
Alexandre Julliard
Oct 21, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the declaration of SymEnumSymbols() in dbghelp.spec.
Use PVOID instead of void* for consistency. Update the dbghelp section in win32.api.
parent
13acf062
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
7 deletions
+11
-7
dbghelp.spec
dlls/dbghelp/dbghelp.spec
+1
-1
path.c
dlls/dbghelp/path.c
+1
-1
source.c
dlls/dbghelp/source.c
+1
-1
type.c
dlls/dbghelp/type.c
+1
-1
win32.api
tools/winapi/win32.api
+7
-3
No files found.
dlls/dbghelp/dbghelp.spec
View file @
9c324680
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
@ stdcall SymCleanup(long)
@ stdcall SymCleanup(long)
@ stdcall SymEnumSourceFiles(ptr long long str ptr ptr)
@ stdcall SymEnumSourceFiles(ptr long long str ptr ptr)
@ stub SymEnumSym
@ stub SymEnumSym
@ stdcall SymEnumSymbols(long long str ptr ptr)
@ stdcall SymEnumSymbols(
ptr
long long str ptr ptr)
@ stdcall SymEnumTypes(ptr long long ptr ptr)
@ stdcall SymEnumTypes(ptr long long ptr ptr)
@ stdcall SymEnumerateModules(long ptr ptr)
@ stdcall SymEnumerateModules(long ptr ptr)
@ stub SymEnumerateModules64
@ stub SymEnumerateModules64
...
...
dlls/dbghelp/path.c
View file @
9c324680
...
@@ -191,7 +191,7 @@ BOOL WINAPI SearchTreeForFile(LPSTR root, LPSTR file, LPSTR buffer)
...
@@ -191,7 +191,7 @@ BOOL WINAPI SearchTreeForFile(LPSTR root, LPSTR file, LPSTR buffer)
*
*
*/
*/
BOOL
WINAPI
EnumDirTree
(
HANDLE
hProcess
,
PCSTR
root
,
PCSTR
file
,
BOOL
WINAPI
EnumDirTree
(
HANDLE
hProcess
,
PCSTR
root
,
PCSTR
file
,
LPSTR
buffer
,
PENUMDIRTREE_CALLBACK
cb
,
void
*
user
)
LPSTR
buffer
,
PENUMDIRTREE_CALLBACK
cb
,
PVOID
user
)
{
{
TRACE
(
"(%p %s %s %p %p %p)
\n
"
,
hProcess
,
root
,
file
,
buffer
,
cb
,
user
);
TRACE
(
"(%p %s %s %p %p %p)
\n
"
,
hProcess
,
root
,
file
,
buffer
,
cb
,
user
);
...
...
dlls/dbghelp/source.c
View file @
9c324680
...
@@ -96,7 +96,7 @@ const char* source_get(const struct module* module, unsigned idx)
...
@@ -96,7 +96,7 @@ const char* source_get(const struct module* module, unsigned idx)
*/
*/
BOOL
WINAPI
SymEnumSourceFiles
(
HANDLE
hProcess
,
ULONG64
ModBase
,
LPSTR
Mask
,
BOOL
WINAPI
SymEnumSourceFiles
(
HANDLE
hProcess
,
ULONG64
ModBase
,
LPSTR
Mask
,
PSYM_ENUMSOURCFILES_CALLBACK
cbSrcFiles
,
PSYM_ENUMSOURCFILES_CALLBACK
cbSrcFiles
,
void
*
UserContext
)
PVOID
UserContext
)
{
{
struct
process
*
pcs
;
struct
process
*
pcs
;
struct
module
*
module
;
struct
module
*
module
;
...
...
dlls/dbghelp/type.c
View file @
9c324680
...
@@ -361,7 +361,7 @@ struct symt_typedef* symt_new_typedef(struct module* module, struct symt* ref,
...
@@ -361,7 +361,7 @@ struct symt_typedef* symt_new_typedef(struct module* module, struct symt* ref,
*/
*/
BOOL
WINAPI
SymEnumTypes
(
HANDLE
hProcess
,
ULONG64
BaseOfDll
,
BOOL
WINAPI
SymEnumTypes
(
HANDLE
hProcess
,
ULONG64
BaseOfDll
,
PSYM_ENUMERATESYMBOLS_CALLBACK
EnumSymbolsCallback
,
PSYM_ENUMERATESYMBOLS_CALLBACK
EnumSymbolsCallback
,
void
*
UserContext
)
PVOID
UserContext
)
{
{
struct
process
*
pcs
;
struct
process
*
pcs
;
struct
module
*
module
;
struct
module
*
module
;
...
...
tools/winapi/win32.api
View file @
9c324680
...
@@ -600,11 +600,15 @@ HANDLE
...
@@ -600,11 +600,15 @@ HANDLE
HMODULE
HMODULE
IMAGEHLP_SYMBOL_TYPE_INFO
IMAGEHLP_SYMBOL_TYPE_INFO
ULONG
ULONG
unsigned long
%longlong
DWORD64
ULONG64
%ptr
%ptr
DWORD *
DWORD
64
*
LPAPI_VERSION
LPAPI_VERSION
LPSTACKFRAME
LPSTACKFRAME
LPVOID
LPVOID
...
@@ -631,7 +635,7 @@ PSYMBOL_INFO
...
@@ -631,7 +635,7 @@ PSYMBOL_INFO
PTRANSLATE_ADDRESS_ROUTINE
PTRANSLATE_ADDRESS_ROUTINE
PVOID
PVOID
char *
char *
void
*
char *
*
%str
%str
...
...
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