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
864a60d5
Commit
864a60d5
authored
Sep 29, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Added support for real80 (aka long double) in inner codeview types.
parent
1a1be65e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
msc.c
dlls/dbghelp/msc.c
+2
-0
No files found.
dlls/dbghelp/msc.c
View file @
864a60d5
...
...
@@ -133,6 +133,7 @@ static void codeview_init_basic_types(struct module* module)
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_REAL80
]
=
&
symt_new_basic
(
module
,
btFloat
,
"long double"
,
10
)
->
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
;
...
...
@@ -158,6 +159,7 @@ static void codeview_init_basic_types(struct module* module)
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_32PREAL80
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_REAL80
])
->
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
;
...
...
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