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
4035b22b
Commit
4035b22b
authored
Sep 18, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 18, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imagehlp: Add SYMBOL_INFO_PACKAGE and SymSetSearchPathW().
parent
af183df6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
imagehlp.h
include/imagehlp.h
+17
-0
No files found.
include/imagehlp.h
View file @
4035b22b
...
...
@@ -540,6 +540,8 @@ typedef struct _IMAGEHLP_GET_TYPE_INFO_PARAMS
#define IMAGEHLP_SYMBOL_INFO_CONSTANT SYMF_CONSTANT
#define IMAGEHLP_SYMBOL_FUNCTION SYMF_FUNCTION
#define MAX_SYM_NAME 2000
typedef
struct
_SYMBOL_INFO
{
ULONG
SizeOfStruct
;
ULONG
TypeIndex
;
...
...
@@ -577,6 +579,18 @@ typedef struct _SYMBOL_INFOW
WCHAR
Name
[
1
];
}
SYMBOL_INFOW
,
*
PSYMBOL_INFOW
;
typedef
struct
_SYMBOL_INFO_PACKAGE
{
SYMBOL_INFO
si
;
CHAR
name
[
MAX_SYM_NAME
+
1
];
}
SYMBOL_INFO_PACKAGE
,
*
PSYMBOL_INFO_PACKAGE
;
typedef
struct
_SYMBOL_INFO_PACKAGEW
{
SYMBOL_INFOW
si
;
WCHAR
name
[
MAX_SYM_NAME
+
1
];
}
SYMBOL_INFO_PACKAGEW
,
*
PSYMBOL_INFO_PACKAGEW
;
#define DBHHEADER_DEBUGDIRS 0x1
typedef
struct
_MODLOAD_DATA
{
...
...
@@ -1281,6 +1295,9 @@ BOOL WINAPI SymSetParentWindow(
BOOL
WINAPI
SymSetSearchPath
(
HANDLE
hProcess
,
PCSTR
szSearchPath
);
BOOL
WINAPI
SymSetSearchPathW
(
HANDLE
hProcess
,
PCWSTR
szSearchPath
);
BOOL
WINAPI
SymUnDName
(
PIMAGEHLP_SYMBOL
sym
,
PSTR
UnDecName
,
DWORD
UnDecNameLength
);
...
...
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