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
32bacc9c
Commit
32bacc9c
authored
Feb 18, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Feb 19, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implement VarDecInt.
parent
48d1f9fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
vartype.c
dlls/oleaut32/vartype.c
+10
-2
No files found.
dlls/oleaut32/vartype.c
View file @
32bacc9c
...
...
@@ -5702,14 +5702,22 @@ HRESULT WINAPI VarDecFix(const DECIMAL* pDecIn, DECIMAL* pDecOut)
*/
HRESULT
WINAPI
VarDecInt
(
const
DECIMAL
*
pDecIn
,
DECIMAL
*
pDecOut
)
{
double
dbl
;
HRESULT
hr
;
if
(
DEC_SIGN
(
pDecIn
)
&
~
DECIMAL_NEG
)
return
E_INVALIDARG
;
if
(
!
(
DEC_SIGN
(
pDecIn
)
&
DECIMAL_NEG
)
||
!
DEC_SCALE
(
pDecIn
))
return
VarDecFix
(
pDecIn
,
pDecOut
);
/* The same, if +ve or no fractionals */
FIXME
(
"semi-stub!
\n
"
);
return
DISP_E_OVERFLOW
;
hr
=
VarR8FromDec
(
pDecIn
,
&
dbl
);
if
(
SUCCEEDED
(
hr
))
{
LONGLONG
rounded
=
dbl
>=
0
.
0
?
dbl
+
0
.
5
:
dbl
-
0
.
5
;
hr
=
VarDecFromI8
(
rounded
,
pDecOut
);
}
return
hr
;
}
/************************************************************************
...
...
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