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
ee88d4ed
Commit
ee88d4ed
authored
Oct 12, 2015
by
André Hentschel
Committed by
Alexandre Julliard
Oct 13, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Initialize more basic types.
Signed-off-by:
André Hentschel
<
nerv@dawncrow.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
83d48483
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
msc.c
dlls/dbghelp/msc.c
+25
-0
No files found.
dlls/dbghelp/msc.c
View file @
ee88d4ed
...
...
@@ -228,6 +228,31 @@ static void codeview_init_basic_types(struct module* module)
cv_basic_types
[
T_64PINT8
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT8
],
8
)
->
symt
;
cv_basic_types
[
T_64PUINT8
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT8
],
8
)
->
symt
;
cv_basic_types
[
T_64PHRESULT
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_HRESULT
],
8
)
->
symt
;
cv_basic_types
[
T_PVOID
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_VOID
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_CHAR
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PSHORT
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_SHORT
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PLONG
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_LONG
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PQUAD
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_QUAD
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PUCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UCHAR
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PUSHORT
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_USHORT
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PULONG
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_ULONG
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PUQUAD
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UQUAD
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PBOOL08
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL08
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PBOOL16
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL16
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PBOOL32
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL32
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PBOOL64
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_BOOL64
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PREAL32
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_REAL32
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PREAL64
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_REAL64
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PREAL80
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_REAL80
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PRCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_RCHAR
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PWCHAR
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_WCHAR
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PINT2
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT2
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PUINT2
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT2
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PINT4
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT4
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PUINT4
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT4
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PINT8
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_INT8
],
sizeof
(
void
*
))
->
symt
;
cv_basic_types
[
T_PUINT8
]
=
&
symt_new_pointer
(
module
,
cv_basic_types
[
T_UINT8
],
sizeof
(
void
*
))
->
symt
;
}
static
int
leaf_as_variant
(
VARIANT
*
v
,
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