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
5aa9340c
Commit
5aa9340c
authored
May 10, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
May 13, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Set correct basic types definition.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d94f4747
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
msc.c
dlls/dbghelp/msc.c
+4
-4
No files found.
dlls/dbghelp/msc.c
View file @
5aa9340c
...
@@ -158,13 +158,13 @@ static void codeview_init_basic_types(struct module* module)
...
@@ -158,13 +158,13 @@ static void codeview_init_basic_types(struct module* module)
cv_basic_types
[
T_NOTYPE
]
=
NULL
;
cv_basic_types
[
T_NOTYPE
]
=
NULL
;
cv_basic_types
[
T_ABS
]
=
NULL
;
cv_basic_types
[
T_ABS
]
=
NULL
;
cv_basic_types
[
T_VOID
]
=
&
symt_get_basic
(
btVoid
,
0
)
->
symt
;
/* void */
cv_basic_types
[
T_VOID
]
=
&
symt_get_basic
(
btVoid
,
0
)
->
symt
;
/* void */
cv_basic_types
[
T_CHAR
]
=
&
symt_get_basic
(
bt
Char
,
1
)
->
symt
;
/* char
*/
cv_basic_types
[
T_CHAR
]
=
&
symt_get_basic
(
bt
Int
,
1
)
->
symt
;
/* signed char (and char in C)
*/
cv_basic_types
[
T_SHORT
]
=
&
symt_get_basic
(
btInt
,
2
)
->
symt
;
/* short int */
cv_basic_types
[
T_SHORT
]
=
&
symt_get_basic
(
btInt
,
2
)
->
symt
;
/* short int */
cv_basic_types
[
T_LONG
]
=
&
symt_get_basic
(
bt
Int
,
4
)
->
symt
;
/* long int */
cv_basic_types
[
T_LONG
]
=
&
symt_get_basic
(
bt
Long
,
4
)
->
symt
;
/* long int */
cv_basic_types
[
T_QUAD
]
=
&
symt_get_basic
(
btInt
,
8
)
->
symt
;
/* long long int */
cv_basic_types
[
T_QUAD
]
=
&
symt_get_basic
(
btInt
,
8
)
->
symt
;
/* long long int */
cv_basic_types
[
T_UCHAR
]
=
&
symt_get_basic
(
btUInt
,
1
)
->
symt
;
/* unsigned char */
cv_basic_types
[
T_UCHAR
]
=
&
symt_get_basic
(
btUInt
,
1
)
->
symt
;
/* unsigned char */
cv_basic_types
[
T_USHORT
]
=
&
symt_get_basic
(
btUInt
,
2
)
->
symt
;
/* unsigned short */
cv_basic_types
[
T_USHORT
]
=
&
symt_get_basic
(
btUInt
,
2
)
->
symt
;
/* unsigned short */
cv_basic_types
[
T_ULONG
]
=
&
symt_get_basic
(
btU
Int
,
4
)
->
symt
;
/* unsigned long */
cv_basic_types
[
T_ULONG
]
=
&
symt_get_basic
(
btU
Long
,
4
)
->
symt
;
/* unsigned long */
cv_basic_types
[
T_UQUAD
]
=
&
symt_get_basic
(
btUInt
,
8
)
->
symt
;
/* unsigned long long */
cv_basic_types
[
T_UQUAD
]
=
&
symt_get_basic
(
btUInt
,
8
)
->
symt
;
/* unsigned long long */
cv_basic_types
[
T_BOOL08
]
=
&
symt_get_basic
(
btBool
,
1
)
->
symt
;
/* BOOL08 */
cv_basic_types
[
T_BOOL08
]
=
&
symt_get_basic
(
btBool
,
1
)
->
symt
;
/* BOOL08 */
cv_basic_types
[
T_BOOL16
]
=
&
symt_get_basic
(
btBool
,
2
)
->
symt
;
/* BOOL16 */
cv_basic_types
[
T_BOOL16
]
=
&
symt_get_basic
(
btBool
,
2
)
->
symt
;
/* BOOL16 */
...
@@ -173,7 +173,7 @@ static void codeview_init_basic_types(struct module* module)
...
@@ -173,7 +173,7 @@ static void codeview_init_basic_types(struct module* module)
cv_basic_types
[
T_REAL32
]
=
&
symt_get_basic
(
btFloat
,
4
)
->
symt
;
/* float */
cv_basic_types
[
T_REAL32
]
=
&
symt_get_basic
(
btFloat
,
4
)
->
symt
;
/* float */
cv_basic_types
[
T_REAL64
]
=
&
symt_get_basic
(
btFloat
,
8
)
->
symt
;
/* double */
cv_basic_types
[
T_REAL64
]
=
&
symt_get_basic
(
btFloat
,
8
)
->
symt
;
/* double */
cv_basic_types
[
T_REAL80
]
=
&
symt_get_basic
(
btFloat
,
10
)
->
symt
;
/* long double */
cv_basic_types
[
T_REAL80
]
=
&
symt_get_basic
(
btFloat
,
10
)
->
symt
;
/* long double */
cv_basic_types
[
T_RCHAR
]
=
&
symt_get_basic
(
bt
Int
,
1
)
->
symt
;
/* signed char
*/
cv_basic_types
[
T_RCHAR
]
=
&
symt_get_basic
(
bt
Char
,
1
)
->
symt
;
/* "real" char (char in C++)
*/
cv_basic_types
[
T_WCHAR
]
=
&
symt_get_basic
(
btWChar
,
2
)
->
symt
;
/* char8_t */
cv_basic_types
[
T_WCHAR
]
=
&
symt_get_basic
(
btWChar
,
2
)
->
symt
;
/* char8_t */
cv_basic_types
[
T_CHAR16
]
=
&
symt_get_basic
(
btChar16
,
2
)
->
symt
;
/* char16_t */
cv_basic_types
[
T_CHAR16
]
=
&
symt_get_basic
(
btChar16
,
2
)
->
symt
;
/* char16_t */
cv_basic_types
[
T_CHAR32
]
=
&
symt_get_basic
(
btChar32
,
4
)
->
symt
;
/* char32_t */
cv_basic_types
[
T_CHAR32
]
=
&
symt_get_basic
(
btChar32
,
4
)
->
symt
;
/* char32_t */
...
...
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