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
4e133e7a
Commit
4e133e7a
authored
Sep 17, 2019
by
Hans Leidekker
Committed by
Alexandre Julliard
Sep 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Add support for CIM_REAL32 values.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ccbfad5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
table.c
dlls/wbemprox/table.c
+5
-0
No files found.
dlls/wbemprox/table.c
View file @
4e133e7a
...
...
@@ -67,6 +67,8 @@ UINT get_type_size( CIMTYPE type )
case
CIM_REFERENCE
:
case
CIM_STRING
:
return
sizeof
(
WCHAR
*
);
case
CIM_REAL32
:
return
sizeof
(
FLOAT
);
default:
ERR
(
"unhandled type %u
\n
"
,
type
);
break
;
...
...
@@ -139,6 +141,9 @@ HRESULT get_value( const struct table *table, UINT row, UINT column, LONGLONG *v
case
CIM_UINT64
:
*
val
=
*
(
const
UINT64
*
)
ptr
;
break
;
case
CIM_REAL32
:
memcpy
(
val
,
ptr
,
sizeof
(
FLOAT
)
);
break
;
default:
ERR
(
"invalid column type %u
\n
"
,
table
->
columns
[
column
].
type
&
COL_TYPE_MASK
);
*
val
=
0
;
...
...
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