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
dec1e46d
Commit
dec1e46d
authored
Sep 28, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 28, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include/cvconst.h: Add enumeration for newest SymTag values.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9768ea56
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
3 deletions
+26
-3
type.c
dlls/dbghelp/type.c
+13
-2
cvconst.h
include/cvconst.h
+13
-1
No files found.
dlls/dbghelp/type.c
View file @
dec1e46d
...
...
@@ -62,9 +62,9 @@ static const char* symt_get_tag_str(DWORD tag)
case
SymTagBaseClass
:
return
"SymTagBaseClass"
;
case
SymTagFriend
:
return
"SymTagFriend"
;
case
SymTagFunctionArgType
:
return
"SymTagFunctionArgType,"
;
case
SymTagFuncDebugStart
:
return
"SymTagFuncDebugStart
,
"
;
case
SymTagFuncDebugStart
:
return
"SymTagFuncDebugStart"
;
case
SymTagFuncDebugEnd
:
return
"SymTagFuncDebugEnd"
;
case
SymTagUsingNamespace
:
return
"SymTagUsingNamespace
,
"
;
case
SymTagUsingNamespace
:
return
"SymTagUsingNamespace"
;
case
SymTagVTableShape
:
return
"SymTagVTableShape"
;
case
SymTagVTable
:
return
"SymTagVTable"
;
case
SymTagCustom
:
return
"SymTagCustom"
;
...
...
@@ -72,6 +72,17 @@ static const char* symt_get_tag_str(DWORD tag)
case
SymTagCustomType
:
return
"SymTagCustomType"
;
case
SymTagManagedType
:
return
"SymTagManagedType"
;
case
SymTagDimension
:
return
"SymTagDimension"
;
case
SymTagCallSite
:
return
"SymTagCallSite"
;
case
SymTagInlineSite
:
return
"SymTagInlineSite"
;
case
SymTagBaseInterface
:
return
"SymTagBaseInterface"
;
case
SymTagVectorType
:
return
"SymTagVectorType"
;
case
SymTagMatrixType
:
return
"SymTagMatrixType"
;
case
SymTagHLSLType
:
return
"SymTagHLSLType"
;
case
SymTagCaller
:
return
"SymTagCaller"
;
case
SymTagCallee
:
return
"SymTagCallee"
;
case
SymTagExport
:
return
"SymTagExport"
;
case
SymTagHeapAllocationSite
:
return
"SymTagHeapAllocationSite"
;
case
SymTagCoffGroup
:
return
"SymTagCoffGroup"
;
default:
return
"---"
;
}
}
...
...
include/cvconst.h
View file @
dec1e46d
...
...
@@ -55,6 +55,17 @@ enum SymTagEnum
SymTagCustomType
,
SymTagManagedType
,
SymTagDimension
,
SymTagCallSite
,
SymTagInlineSite
,
SymTagBaseInterface
,
SymTagVectorType
,
SymTagMatrixType
,
SymTagHLSLType
,
SymTagCaller
,
SymTagCallee
,
SymTagExport
,
SymTagHeapAllocationSite
,
SymTagCoffGroup
,
SymTagMax
};
...
...
@@ -103,7 +114,8 @@ enum LocationType
LocIsSlot
,
LocIsIlRel
,
LocInMetaData
,
LocIsConstant
LocIsConstant
,
LocTypeMax
};
/* kind of SymTagData */
...
...
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