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
428d0e54
Commit
428d0e54
authored
Feb 06, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added missing basic types for booleans and integers.
parent
58d2e3df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
msc.c
dlls/dbghelp/msc.c
+16
-0
No files found.
dlls/dbghelp/msc.c
View file @
428d0e54
...
...
@@ -125,12 +125,20 @@ static void codeview_init_basic_types(struct module* module)
cv_basic_types
[
T_USHORT
]
=
&
symt_new_basic
(
module
,
btUInt
,
"unsigned short"
,
2
)
->
symt
;
cv_basic_types
[
T_ULONG
]
=
&
symt_new_basic
(
module
,
btUInt
,
"unsigned long"
,
4
)
->
symt
;
cv_basic_types
[
T_UQUAD
]
=
&
symt_new_basic
(
module
,
btUInt
,
"unsigned long long"
,
8
)
->
symt
;
cv_basic_types
[
T_BOOL08
]
=
&
symt_new_basic
(
module
,
btBool
,
"BOOL08"
,
1
)
->
symt
;
cv_basic_types
[
T_BOOL16
]
=
&
symt_new_basic
(
module
,
btBool
,
"BOOL16"
,
2
)
->
symt
;
cv_basic_types
[
T_BOOL32
]
=
&
symt_new_basic
(
module
,
btBool
,
"BOOL32"
,
4
)
->
symt
;
cv_basic_types
[
T_BOOL64
]
=
&
symt_new_basic
(
module
,
btBool
,
"BOOL64"
,
8
)
->
symt
;
cv_basic_types
[
T_REAL32
]
=
&
symt_new_basic
(
module
,
btFloat
,
"float"
,
4
)
->
symt
;
cv_basic_types
[
T_REAL64
]
=
&
symt_new_basic
(
module
,
btFloat
,
"double"
,
8
)
->
symt
;
cv_basic_types
[
T_RCHAR
]
=
&
symt_new_basic
(
module
,
btInt
,
"signed char"
,
1
)
->
symt
;
cv_basic_types
[
T_WCHAR
]
=
&
symt_new_basic
(
module
,
btWChar
,
"wchar_t"
,
2
)
->
symt
;
cv_basic_types
[
T_INT2
]
=
&
symt_new_basic
(
module
,
btInt
,
"INT2"
,
2
)
->
symt
;
cv_basic_types
[
T_UINT2
]
=
&
symt_new_basic
(
module
,
btUInt
,
"UINT2"
,
2
)
->
symt
;
cv_basic_types
[
T_INT4
]
=
&
symt_new_basic
(
module
,
btInt
,
"INT4"
,
4
)
->
symt
;
cv_basic_types
[
T_UINT4
]
=
&
symt_new_basic
(
module
,
btUInt
,
"UINT4"
,
4
)
->
symt
;
cv_basic_types
[
T_INT8
]
=
&
symt_new_basic
(
module
,
btInt
,
"INT8"
,
8
)
->
symt
;
cv_basic_types
[
T_UINT8
]
=
&
symt_new_basic
(
module
,
btUInt
,
"UINT8"
,
8
)
->
symt
;
cv_basic_types
[
T_32PVOID
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_VOID
])
->
symt
;
cv_basic_types
[
T_32PCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_CHAR
])
->
symt
;
...
...
@@ -141,12 +149,20 @@ static void codeview_init_basic_types(struct module* module)
cv_basic_types
[
T_32PUSHORT
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_USHORT
])
->
symt
;
cv_basic_types
[
T_32PULONG
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_ULONG
])
->
symt
;
cv_basic_types
[
T_32PUQUAD
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UQUAD
])
->
symt
;
cv_basic_types
[
T_32PBOOL08
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL08
])
->
symt
;
cv_basic_types
[
T_32PBOOL16
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL16
])
->
symt
;
cv_basic_types
[
T_32PBOOL32
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL32
])
->
symt
;
cv_basic_types
[
T_32PBOOL64
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL64
])
->
symt
;
cv_basic_types
[
T_32PREAL32
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_REAL32
])
->
symt
;
cv_basic_types
[
T_32PREAL64
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_REAL64
])
->
symt
;
cv_basic_types
[
T_32PRCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_RCHAR
])
->
symt
;
cv_basic_types
[
T_32PWCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_WCHAR
])
->
symt
;
cv_basic_types
[
T_32PINT2
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT2
])
->
symt
;
cv_basic_types
[
T_32PUINT2
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT2
])
->
symt
;
cv_basic_types
[
T_32PINT4
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT4
])
->
symt
;
cv_basic_types
[
T_32PUINT4
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT4
])
->
symt
;
cv_basic_types
[
T_32PINT8
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT8
])
->
symt
;
cv_basic_types
[
T_32PUINT8
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT8
])
->
symt
;
}
static
int
numeric_leaf
(
int
*
value
,
const
unsigned
short
int
*
leaf
)
...
...
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