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
9daabbc8
Commit
9daabbc8
authored
May 15, 2003
by
Stefan Leichter
Committed by
Alexandre Julliard
May 15, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for VarBstrFromDec.
parent
144b0d15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+1
-1
variant.c
dlls/oleaut32/variant.c
+12
-0
No files found.
dlls/oleaut32/oleaut32.spec
View file @
9daabbc8
...
...
@@ -227,7 +227,7 @@
229 stdcall VarBstrFromI1(long long long ptr)
230 stdcall VarBstrFromUI2(long long long ptr)
231 stdcall VarBstrFromUI4(long long long ptr)
232 st
ub VarBstrFromDec
232 st
dcall VarBstrFromDec(ptr long long ptr)
233 stdcall VarBoolFromI1(long ptr)
234 stdcall VarBoolFromUI2(long ptr)
235 stdcall VarBoolFromUI4(long ptr)
...
...
dlls/oleaut32/variant.c
View file @
9daabbc8
...
...
@@ -3634,6 +3634,18 @@ HRESULT WINAPI VarBstrFromUI4(ULONG ulIn, LCID lcid, ULONG dwFlags, BSTR* pbstrO
}
/******************************************************************************
* VarBstrFromDec [OLEAUT32.@]
*/
HRESULT
WINAPI
VarBstrFromDec
(
DECIMAL
*
pDecIn
,
LCID
lcid
,
ULONG
dwFlags
,
BSTR
*
pbstrOut
)
{
FIXME
(
"%c%08lx%08lx%08lx E%02x stub
\n
"
,
(
pDecIn
->
u
.
s
.
sign
==
DECIMAL_NEG
)
?
'-'
:
(
pDecIn
->
u
.
s
.
sign
==
0
)
?
'+'
:
'?'
,
pDecIn
->
Hi32
,
pDecIn
->
u1
.
s1
.
Mid32
,
pDecIn
->
u1
.
s1
.
Lo32
,
pDecIn
->
u
.
s
.
scale
);
return
E_INVALIDARG
;
}
/******************************************************************************
* VarBoolFromUI1 [OLEAUT32.118]
*/
HRESULT
WINAPI
VarBoolFromUI1
(
BYTE
bIn
,
VARIANT_BOOL
*
pboolOut
)
...
...
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