oleaut32: Fixed bounds of VarIntFromFloat.
[wine.git] / dlls / oleaut32 / vartype.c
blob4d067e097a0044de1d993cb0048d3abb41ef983d
1 /*
2 * Low level variant functions
4 * Copyright 2003 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define COBJMACROS
22 #define NONAMELESSUNION
23 #define NONAMELESSSTRUCT
25 #include "wine/debug.h"
26 #include "wine/unicode.h"
27 #include "winbase.h"
28 #include "winuser.h"
29 #include "winnt.h"
30 #include "variant.h"
31 #include "resource.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(variant);
35 extern HMODULE hProxyDll DECLSPEC_HIDDEN;
37 #define CY_MULTIPLIER 10000 /* 4 dp of precision */
38 #define CY_MULTIPLIER_F 10000.0
39 #define CY_HALF (CY_MULTIPLIER/2) /* 0.5 */
40 #define CY_HALF_F (CY_MULTIPLIER_F/2.0)
42 static const WCHAR szFloatFormatW[] = { '%','.','7','G','\0' };
43 static const WCHAR szDoubleFormatW[] = { '%','.','1','5','G','\0' };
45 /* Copy data from one variant to another. */
46 static inline void VARIANT_CopyData(const VARIANT *srcVar, VARTYPE vt, void *pOut)
48 switch (vt)
50 case VT_I1:
51 case VT_UI1: memcpy(pOut, &V_UI1(srcVar), sizeof(BYTE)); break;
52 case VT_BOOL:
53 case VT_I2:
54 case VT_UI2: memcpy(pOut, &V_UI2(srcVar), sizeof(SHORT)); break;
55 case VT_R4:
56 case VT_INT:
57 case VT_I4:
58 case VT_UINT:
59 case VT_UI4: memcpy(pOut, &V_UI4(srcVar), sizeof (LONG)); break;
60 case VT_R8:
61 case VT_DATE:
62 case VT_CY:
63 case VT_I8:
64 case VT_UI8: memcpy(pOut, &V_UI8(srcVar), sizeof (LONG64)); break;
65 case VT_INT_PTR: memcpy(pOut, &V_INT_PTR(srcVar), sizeof (INT_PTR)); break;
66 case VT_DECIMAL: memcpy(pOut, &V_DECIMAL(srcVar), sizeof (DECIMAL)); break;
67 case VT_BSTR: memcpy(pOut, &V_BSTR(srcVar), sizeof(BSTR)); break;
68 default:
69 FIXME("VT_ type %d unhandled, please report!\n", vt);
73 /* Macro to inline conversion from a float or double to any integer type,
74 * rounding according to the 'dutch' convention.
76 #define VARIANT_DutchRound(typ, value, res) do { \
77 double whole = value < 0 ? ceil(value) : floor(value); \
78 double fract = value - whole; \
79 if (fract > 0.5) res = (typ)whole + (typ)1; \
80 else if (fract == 0.5) { typ is_odd = (typ)whole & 1; res = whole + is_odd; } \
81 else if (fract >= 0.0) res = (typ)whole; \
82 else if (fract == -0.5) { typ is_odd = (typ)whole & 1; res = whole - is_odd; } \
83 else if (fract > -0.5) res = (typ)whole; \
84 else res = (typ)whole - (typ)1; \
85 } while(0)
88 /* Coerce VT_BSTR to a numeric type */
89 static HRESULT VARIANT_NumberFromBstr(OLECHAR* pStrIn, LCID lcid, ULONG ulFlags,
90 void* pOut, VARTYPE vt)
92 VARIANTARG dstVar;
93 HRESULT hRet;
94 NUMPARSE np;
95 BYTE rgb[1024];
97 /* Use VarParseNumFromStr/VarNumFromParseNum as MSDN indicates */
98 np.cDig = sizeof(rgb) / sizeof(BYTE);
99 np.dwInFlags = NUMPRS_STD;
101 hRet = VarParseNumFromStr(pStrIn, lcid, ulFlags, &np, rgb);
103 if (SUCCEEDED(hRet))
105 /* 1 << vt gives us the VTBIT constant for the destination number type */
106 hRet = VarNumFromParseNum(&np, rgb, 1 << vt, &dstVar);
107 if (SUCCEEDED(hRet))
108 VARIANT_CopyData(&dstVar, vt, pOut);
110 return hRet;
113 /* Coerce VT_DISPATCH to another type */
114 static HRESULT VARIANT_FromDisp(IDispatch* pdispIn, LCID lcid, void* pOut,
115 VARTYPE vt, DWORD dwFlags)
117 static DISPPARAMS emptyParams = { NULL, NULL, 0, 0 };
118 VARIANTARG srcVar, dstVar;
119 HRESULT hRet;
121 if (!pdispIn)
122 return DISP_E_BADVARTYPE;
124 /* Get the default 'value' property from the IDispatch */
125 VariantInit(&srcVar);
126 hRet = IDispatch_Invoke(pdispIn, DISPID_VALUE, &IID_NULL, lcid, DISPATCH_PROPERTYGET,
127 &emptyParams, &srcVar, NULL, NULL);
129 if (SUCCEEDED(hRet))
131 /* Convert the property to the requested type */
132 V_VT(&dstVar) = VT_EMPTY;
133 hRet = VariantChangeTypeEx(&dstVar, &srcVar, lcid, dwFlags, vt);
134 VariantClear(&srcVar);
136 if (SUCCEEDED(hRet))
138 VARIANT_CopyData(&dstVar, vt, pOut);
139 VariantClear(&srcVar);
142 else
143 hRet = DISP_E_TYPEMISMATCH;
144 return hRet;
147 /* Inline return type */
148 #define RETTYP static inline HRESULT
151 /* Simple compiler cast from one type to another */
152 #define SIMPLE(dest, src, func) RETTYP _##func(src in, dest* out) { \
153 *out = in; return S_OK; }
155 /* Compiler cast where input cannot be negative */
156 #define NEGTST(dest, src, func) RETTYP _##func(src in, dest* out) { \
157 if (in < 0) return DISP_E_OVERFLOW; *out = in; return S_OK; }
159 /* Compiler cast where input cannot be > some number */
160 #define POSTST(dest, src, func, tst) RETTYP _##func(src in, dest* out) { \
161 if (in > (dest)tst) return DISP_E_OVERFLOW; *out = in; return S_OK; }
163 /* Compiler cast where input cannot be < some number or >= some other number */
164 #define BOTHTST(dest, src, func, lo, hi) RETTYP _##func(src in, dest* out) { \
165 if (in < (dest)lo || in > hi) return DISP_E_OVERFLOW; *out = in; return S_OK; }
167 /* I1 */
168 POSTST(signed char, BYTE, VarI1FromUI1, I1_MAX)
169 BOTHTST(signed char, SHORT, VarI1FromI2, I1_MIN, I1_MAX)
170 BOTHTST(signed char, LONG, VarI1FromI4, I1_MIN, I1_MAX)
171 SIMPLE(signed char, VARIANT_BOOL, VarI1FromBool)
172 POSTST(signed char, USHORT, VarI1FromUI2, I1_MAX)
173 POSTST(signed char, ULONG, VarI1FromUI4, I1_MAX)
174 BOTHTST(signed char, LONG64, VarI1FromI8, I1_MIN, I1_MAX)
175 POSTST(signed char, ULONG64, VarI1FromUI8, I1_MAX)
177 /* UI1 */
178 BOTHTST(BYTE, SHORT, VarUI1FromI2, UI1_MIN, UI1_MAX)
179 SIMPLE(BYTE, VARIANT_BOOL, VarUI1FromBool)
180 NEGTST(BYTE, signed char, VarUI1FromI1)
181 POSTST(BYTE, USHORT, VarUI1FromUI2, UI1_MAX)
182 BOTHTST(BYTE, LONG, VarUI1FromI4, UI1_MIN, UI1_MAX)
183 POSTST(BYTE, ULONG, VarUI1FromUI4, UI1_MAX)
184 BOTHTST(BYTE, LONG64, VarUI1FromI8, UI1_MIN, UI1_MAX)
185 POSTST(BYTE, ULONG64, VarUI1FromUI8, UI1_MAX)
187 /* I2 */
188 SIMPLE(SHORT, BYTE, VarI2FromUI1)
189 BOTHTST(SHORT, LONG, VarI2FromI4, I2_MIN, I2_MAX)
190 SIMPLE(SHORT, VARIANT_BOOL, VarI2FromBool)
191 SIMPLE(SHORT, signed char, VarI2FromI1)
192 POSTST(SHORT, USHORT, VarI2FromUI2, I2_MAX)
193 POSTST(SHORT, ULONG, VarI2FromUI4, I2_MAX)
194 BOTHTST(SHORT, LONG64, VarI2FromI8, I2_MIN, I2_MAX)
195 POSTST(SHORT, ULONG64, VarI2FromUI8, I2_MAX)
197 /* UI2 */
198 SIMPLE(USHORT, BYTE, VarUI2FromUI1)
199 NEGTST(USHORT, SHORT, VarUI2FromI2)
200 BOTHTST(USHORT, LONG, VarUI2FromI4, UI2_MIN, UI2_MAX)
201 SIMPLE(USHORT, VARIANT_BOOL, VarUI2FromBool)
202 NEGTST(USHORT, signed char, VarUI2FromI1)
203 POSTST(USHORT, ULONG, VarUI2FromUI4, UI2_MAX)
204 BOTHTST(USHORT, LONG64, VarUI2FromI8, UI2_MIN, UI2_MAX)
205 POSTST(USHORT, ULONG64, VarUI2FromUI8, UI2_MAX)
207 /* I4 */
208 SIMPLE(LONG, BYTE, VarI4FromUI1)
209 SIMPLE(LONG, SHORT, VarI4FromI2)
210 SIMPLE(LONG, VARIANT_BOOL, VarI4FromBool)
211 SIMPLE(LONG, signed char, VarI4FromI1)
212 SIMPLE(LONG, USHORT, VarI4FromUI2)
213 POSTST(LONG, ULONG, VarI4FromUI4, I4_MAX)
214 BOTHTST(LONG, LONG64, VarI4FromI8, I4_MIN, I4_MAX)
215 POSTST(LONG, ULONG64, VarI4FromUI8, I4_MAX)
217 /* UI4 */
218 SIMPLE(ULONG, BYTE, VarUI4FromUI1)
219 NEGTST(ULONG, SHORT, VarUI4FromI2)
220 NEGTST(ULONG, LONG, VarUI4FromI4)
221 SIMPLE(ULONG, VARIANT_BOOL, VarUI4FromBool)
222 NEGTST(ULONG, signed char, VarUI4FromI1)
223 SIMPLE(ULONG, USHORT, VarUI4FromUI2)
224 BOTHTST(ULONG, LONG64, VarUI4FromI8, UI4_MIN, UI4_MAX)
225 POSTST(ULONG, ULONG64, VarUI4FromUI8, UI4_MAX)
227 /* I8 */
228 SIMPLE(LONG64, BYTE, VarI8FromUI1)
229 SIMPLE(LONG64, SHORT, VarI8FromI2)
230 SIMPLE(LONG64, signed char, VarI8FromI1)
231 SIMPLE(LONG64, USHORT, VarI8FromUI2)
232 SIMPLE(LONG64, ULONG, VarI8FromUI4)
233 POSTST(LONG64, ULONG64, VarI8FromUI8, I8_MAX)
235 /* UI8 */
236 SIMPLE(ULONG64, BYTE, VarUI8FromUI1)
237 NEGTST(ULONG64, SHORT, VarUI8FromI2)
238 NEGTST(ULONG64, signed char, VarUI8FromI1)
239 SIMPLE(ULONG64, USHORT, VarUI8FromUI2)
240 SIMPLE(ULONG64, ULONG, VarUI8FromUI4)
241 NEGTST(ULONG64, LONG64, VarUI8FromI8)
243 /* R4 (float) */
244 SIMPLE(float, BYTE, VarR4FromUI1)
245 SIMPLE(float, SHORT, VarR4FromI2)
246 SIMPLE(float, signed char, VarR4FromI1)
247 SIMPLE(float, USHORT, VarR4FromUI2)
248 SIMPLE(float, LONG, VarR4FromI4)
249 SIMPLE(float, ULONG, VarR4FromUI4)
250 SIMPLE(float, LONG64, VarR4FromI8)
251 SIMPLE(float, ULONG64, VarR4FromUI8)
253 /* R8 (double) */
254 SIMPLE(double, BYTE, VarR8FromUI1)
255 SIMPLE(double, SHORT, VarR8FromI2)
256 SIMPLE(double, float, VarR8FromR4)
257 RETTYP _VarR8FromCy(CY i, double* o) { *o = (double)i.int64 / CY_MULTIPLIER_F; return S_OK; }
258 SIMPLE(double, DATE, VarR8FromDate)
259 SIMPLE(double, signed char, VarR8FromI1)
260 SIMPLE(double, USHORT, VarR8FromUI2)
261 SIMPLE(double, LONG, VarR8FromI4)
262 SIMPLE(double, ULONG, VarR8FromUI4)
263 SIMPLE(double, LONG64, VarR8FromI8)
264 SIMPLE(double, ULONG64, VarR8FromUI8)
267 /* I1
270 /************************************************************************
271 * VarI1FromUI1 (OLEAUT32.244)
273 * Convert a VT_UI1 to a VT_I1.
275 * PARAMS
276 * bIn [I] Source
277 * pcOut [O] Destination
279 * RETURNS
280 * Success: S_OK.
281 * Failure: E_INVALIDARG, if the source value is invalid
282 * DISP_E_OVERFLOW, if the value will not fit in the destination
284 HRESULT WINAPI VarI1FromUI1(BYTE bIn, signed char* pcOut)
286 return _VarI1FromUI1(bIn, pcOut);
289 /************************************************************************
290 * VarI1FromI2 (OLEAUT32.245)
292 * Convert a VT_I2 to a VT_I1.
294 * PARAMS
295 * sIn [I] Source
296 * pcOut [O] Destination
298 * RETURNS
299 * Success: S_OK.
300 * Failure: E_INVALIDARG, if the source value is invalid
301 * DISP_E_OVERFLOW, if the value will not fit in the destination
303 HRESULT WINAPI VarI1FromI2(SHORT sIn, signed char* pcOut)
305 return _VarI1FromI2(sIn, pcOut);
308 /************************************************************************
309 * VarI1FromI4 (OLEAUT32.246)
311 * Convert a VT_I4 to a VT_I1.
313 * PARAMS
314 * iIn [I] Source
315 * pcOut [O] Destination
317 * RETURNS
318 * Success: S_OK.
319 * Failure: E_INVALIDARG, if the source value is invalid
320 * DISP_E_OVERFLOW, if the value will not fit in the destination
322 HRESULT WINAPI VarI1FromI4(LONG iIn, signed char* pcOut)
324 return _VarI1FromI4(iIn, pcOut);
327 /************************************************************************
328 * VarI1FromR4 (OLEAUT32.247)
330 * Convert a VT_R4 to a VT_I1.
332 * PARAMS
333 * fltIn [I] Source
334 * pcOut [O] Destination
336 * RETURNS
337 * Success: S_OK.
338 * Failure: E_INVALIDARG, if the source value is invalid
339 * DISP_E_OVERFLOW, if the value will not fit in the destination
341 HRESULT WINAPI VarI1FromR4(FLOAT fltIn, signed char* pcOut)
343 return VarI1FromR8(fltIn, pcOut);
346 /************************************************************************
347 * VarI1FromR8 (OLEAUT32.248)
349 * Convert a VT_R8 to a VT_I1.
351 * PARAMS
352 * dblIn [I] Source
353 * pcOut [O] Destination
355 * RETURNS
356 * Success: S_OK.
357 * Failure: E_INVALIDARG, if the source value is invalid
358 * DISP_E_OVERFLOW, if the value will not fit in the destination
360 * NOTES
361 * See VarI8FromR8() for details concerning rounding.
363 HRESULT WINAPI VarI1FromR8(double dblIn, signed char* pcOut)
365 if (dblIn < I1_MIN - 0.5 || dblIn >= I1_MAX + 0.5)
366 return DISP_E_OVERFLOW;
367 VARIANT_DutchRound(CHAR, dblIn, *pcOut);
368 return S_OK;
371 /************************************************************************
372 * VarI1FromDate (OLEAUT32.249)
374 * Convert a VT_DATE to a VT_I1.
376 * PARAMS
377 * dateIn [I] Source
378 * pcOut [O] Destination
380 * RETURNS
381 * Success: S_OK.
382 * Failure: E_INVALIDARG, if the source value is invalid
383 * DISP_E_OVERFLOW, if the value will not fit in the destination
385 HRESULT WINAPI VarI1FromDate(DATE dateIn, signed char* pcOut)
387 return VarI1FromR8(dateIn, pcOut);
390 /************************************************************************
391 * VarI1FromCy (OLEAUT32.250)
393 * Convert a VT_CY to a VT_I1.
395 * PARAMS
396 * cyIn [I] Source
397 * pcOut [O] Destination
399 * RETURNS
400 * Success: S_OK.
401 * Failure: E_INVALIDARG, if the source value is invalid
402 * DISP_E_OVERFLOW, if the value will not fit in the destination
404 HRESULT WINAPI VarI1FromCy(CY cyIn, signed char* pcOut)
406 LONG i = I1_MAX + 1;
408 VarI4FromCy(cyIn, &i);
409 return _VarI1FromI4(i, pcOut);
412 /************************************************************************
413 * VarI1FromStr (OLEAUT32.251)
415 * Convert a VT_BSTR to a VT_I1.
417 * PARAMS
418 * strIn [I] Source
419 * lcid [I] LCID for the conversion
420 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
421 * pcOut [O] Destination
423 * RETURNS
424 * Success: S_OK.
425 * Failure: E_INVALIDARG, if the source value is invalid
426 * DISP_E_OVERFLOW, if the value will not fit in the destination
427 * DISP_E_TYPEMISMATCH, if the type cannot be converted
429 HRESULT WINAPI VarI1FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, signed char* pcOut)
431 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pcOut, VT_I1);
434 /************************************************************************
435 * VarI1FromDisp (OLEAUT32.252)
437 * Convert a VT_DISPATCH to a VT_I1.
439 * PARAMS
440 * pdispIn [I] Source
441 * lcid [I] LCID for conversion
442 * pcOut [O] Destination
444 * RETURNS
445 * Success: S_OK.
446 * Failure: E_INVALIDARG, if the source value is invalid
447 * DISP_E_OVERFLOW, if the value will not fit in the destination
448 * DISP_E_TYPEMISMATCH, if the type cannot be converted
450 HRESULT WINAPI VarI1FromDisp(IDispatch* pdispIn, LCID lcid, signed char* pcOut)
452 return VARIANT_FromDisp(pdispIn, lcid, pcOut, VT_I1, 0);
455 /************************************************************************
456 * VarI1FromBool (OLEAUT32.253)
458 * Convert a VT_BOOL to a VT_I1.
460 * PARAMS
461 * boolIn [I] Source
462 * pcOut [O] Destination
464 * RETURNS
465 * S_OK.
467 HRESULT WINAPI VarI1FromBool(VARIANT_BOOL boolIn, signed char* pcOut)
469 return _VarI1FromBool(boolIn, pcOut);
472 /************************************************************************
473 * VarI1FromUI2 (OLEAUT32.254)
475 * Convert a VT_UI2 to a VT_I1.
477 * PARAMS
478 * usIn [I] Source
479 * pcOut [O] Destination
481 * RETURNS
482 * Success: S_OK.
483 * Failure: E_INVALIDARG, if the source value is invalid
484 * DISP_E_OVERFLOW, if the value will not fit in the destination
486 HRESULT WINAPI VarI1FromUI2(USHORT usIn, signed char* pcOut)
488 return _VarI1FromUI2(usIn, pcOut);
491 /************************************************************************
492 * VarI1FromUI4 (OLEAUT32.255)
494 * Convert a VT_UI4 to a VT_I1.
496 * PARAMS
497 * ulIn [I] Source
498 * pcOut [O] Destination
500 * RETURNS
501 * Success: S_OK.
502 * Failure: E_INVALIDARG, if the source value is invalid
503 * DISP_E_OVERFLOW, if the value will not fit in the destination
504 * DISP_E_TYPEMISMATCH, if the type cannot be converted
506 HRESULT WINAPI VarI1FromUI4(ULONG ulIn, signed char* pcOut)
508 return _VarI1FromUI4(ulIn, pcOut);
511 /************************************************************************
512 * VarI1FromDec (OLEAUT32.256)
514 * Convert a VT_DECIMAL to a VT_I1.
516 * PARAMS
517 * pDecIn [I] Source
518 * pcOut [O] Destination
520 * RETURNS
521 * Success: S_OK.
522 * Failure: E_INVALIDARG, if the source value is invalid
523 * DISP_E_OVERFLOW, if the value will not fit in the destination
525 HRESULT WINAPI VarI1FromDec(DECIMAL *pdecIn, signed char* pcOut)
527 LONG64 i64;
528 HRESULT hRet;
530 hRet = VarI8FromDec(pdecIn, &i64);
532 if (SUCCEEDED(hRet))
533 hRet = _VarI1FromI8(i64, pcOut);
534 return hRet;
537 /************************************************************************
538 * VarI1FromI8 (OLEAUT32.376)
540 * Convert a VT_I8 to a VT_I1.
542 * PARAMS
543 * llIn [I] Source
544 * pcOut [O] Destination
546 * RETURNS
547 * Success: S_OK.
548 * Failure: E_INVALIDARG, if the source value is invalid
549 * DISP_E_OVERFLOW, if the value will not fit in the destination
551 HRESULT WINAPI VarI1FromI8(LONG64 llIn, signed char* pcOut)
553 return _VarI1FromI8(llIn, pcOut);
556 /************************************************************************
557 * VarI1FromUI8 (OLEAUT32.377)
559 * Convert a VT_UI8 to a VT_I1.
561 * PARAMS
562 * ullIn [I] Source
563 * pcOut [O] Destination
565 * RETURNS
566 * Success: S_OK.
567 * Failure: E_INVALIDARG, if the source value is invalid
568 * DISP_E_OVERFLOW, if the value will not fit in the destination
570 HRESULT WINAPI VarI1FromUI8(ULONG64 ullIn, signed char* pcOut)
572 return _VarI1FromUI8(ullIn, pcOut);
575 /* UI1
578 /************************************************************************
579 * VarUI1FromI2 (OLEAUT32.130)
581 * Convert a VT_I2 to a VT_UI1.
583 * PARAMS
584 * sIn [I] Source
585 * pbOut [O] Destination
587 * RETURNS
588 * Success: S_OK.
589 * Failure: E_INVALIDARG, if the source value is invalid
590 * DISP_E_OVERFLOW, if the value will not fit in the destination
592 HRESULT WINAPI VarUI1FromI2(SHORT sIn, BYTE* pbOut)
594 return _VarUI1FromI2(sIn, pbOut);
597 /************************************************************************
598 * VarUI1FromI4 (OLEAUT32.131)
600 * Convert a VT_I4 to a VT_UI1.
602 * PARAMS
603 * iIn [I] Source
604 * pbOut [O] Destination
606 * RETURNS
607 * Success: S_OK.
608 * Failure: E_INVALIDARG, if the source value is invalid
609 * DISP_E_OVERFLOW, if the value will not fit in the destination
611 HRESULT WINAPI VarUI1FromI4(LONG iIn, BYTE* pbOut)
613 return _VarUI1FromI4(iIn, pbOut);
616 /************************************************************************
617 * VarUI1FromR4 (OLEAUT32.132)
619 * Convert a VT_R4 to a VT_UI1.
621 * PARAMS
622 * fltIn [I] Source
623 * pbOut [O] Destination
625 * RETURNS
626 * Success: S_OK.
627 * Failure: E_INVALIDARG, if the source value is invalid
628 * DISP_E_OVERFLOW, if the value will not fit in the destination
629 * DISP_E_TYPEMISMATCH, if the type cannot be converted
631 HRESULT WINAPI VarUI1FromR4(FLOAT fltIn, BYTE* pbOut)
633 return VarUI1FromR8(fltIn, pbOut);
636 /************************************************************************
637 * VarUI1FromR8 (OLEAUT32.133)
639 * Convert a VT_R8 to a VT_UI1.
641 * PARAMS
642 * dblIn [I] Source
643 * pbOut [O] Destination
645 * RETURNS
646 * Success: S_OK.
647 * Failure: E_INVALIDARG, if the source value is invalid
648 * DISP_E_OVERFLOW, if the value will not fit in the destination
650 * NOTES
651 * See VarI8FromR8() for details concerning rounding.
653 HRESULT WINAPI VarUI1FromR8(double dblIn, BYTE* pbOut)
655 if (dblIn < -0.5 || dblIn >= UI1_MAX + 0.5)
656 return DISP_E_OVERFLOW;
657 VARIANT_DutchRound(BYTE, dblIn, *pbOut);
658 return S_OK;
661 /************************************************************************
662 * VarUI1FromCy (OLEAUT32.134)
664 * Convert a VT_CY to a VT_UI1.
666 * PARAMS
667 * cyIn [I] Source
668 * pbOut [O] Destination
670 * RETURNS
671 * Success: S_OK.
672 * Failure: E_INVALIDARG, if the source value is invalid
673 * DISP_E_OVERFLOW, if the value will not fit in the destination
675 * NOTES
676 * Negative values >= -5000 will be converted to 0.
678 HRESULT WINAPI VarUI1FromCy(CY cyIn, BYTE* pbOut)
680 ULONG i = UI1_MAX + 1;
682 VarUI4FromCy(cyIn, &i);
683 return _VarUI1FromUI4(i, pbOut);
686 /************************************************************************
687 * VarUI1FromDate (OLEAUT32.135)
689 * Convert a VT_DATE to a VT_UI1.
691 * PARAMS
692 * dateIn [I] Source
693 * pbOut [O] Destination
695 * RETURNS
696 * Success: S_OK.
697 * Failure: E_INVALIDARG, if the source value is invalid
698 * DISP_E_OVERFLOW, if the value will not fit in the destination
700 HRESULT WINAPI VarUI1FromDate(DATE dateIn, BYTE* pbOut)
702 return VarUI1FromR8(dateIn, pbOut);
705 /************************************************************************
706 * VarUI1FromStr (OLEAUT32.136)
708 * Convert a VT_BSTR to a VT_UI1.
710 * PARAMS
711 * strIn [I] Source
712 * lcid [I] LCID for the conversion
713 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
714 * pbOut [O] Destination
716 * RETURNS
717 * Success: S_OK.
718 * Failure: E_INVALIDARG, if the source value is invalid
719 * DISP_E_OVERFLOW, if the value will not fit in the destination
720 * DISP_E_TYPEMISMATCH, if the type cannot be converted
722 HRESULT WINAPI VarUI1FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, BYTE* pbOut)
724 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pbOut, VT_UI1);
727 /************************************************************************
728 * VarUI1FromDisp (OLEAUT32.137)
730 * Convert a VT_DISPATCH to a VT_UI1.
732 * PARAMS
733 * pdispIn [I] Source
734 * lcid [I] LCID for conversion
735 * pbOut [O] Destination
737 * RETURNS
738 * Success: S_OK.
739 * Failure: E_INVALIDARG, if the source value is invalid
740 * DISP_E_OVERFLOW, if the value will not fit in the destination
741 * DISP_E_TYPEMISMATCH, if the type cannot be converted
743 HRESULT WINAPI VarUI1FromDisp(IDispatch* pdispIn, LCID lcid, BYTE* pbOut)
745 return VARIANT_FromDisp(pdispIn, lcid, pbOut, VT_UI1, 0);
748 /************************************************************************
749 * VarUI1FromBool (OLEAUT32.138)
751 * Convert a VT_BOOL to a VT_UI1.
753 * PARAMS
754 * boolIn [I] Source
755 * pbOut [O] Destination
757 * RETURNS
758 * S_OK.
760 HRESULT WINAPI VarUI1FromBool(VARIANT_BOOL boolIn, BYTE* pbOut)
762 return _VarUI1FromBool(boolIn, pbOut);
765 /************************************************************************
766 * VarUI1FromI1 (OLEAUT32.237)
768 * Convert a VT_I1 to a VT_UI1.
770 * PARAMS
771 * cIn [I] Source
772 * pbOut [O] Destination
774 * RETURNS
775 * Success: S_OK.
776 * Failure: E_INVALIDARG, if the source value is invalid
777 * DISP_E_OVERFLOW, if the value will not fit in the destination
779 HRESULT WINAPI VarUI1FromI1(signed char cIn, BYTE* pbOut)
781 return _VarUI1FromI1(cIn, pbOut);
784 /************************************************************************
785 * VarUI1FromUI2 (OLEAUT32.238)
787 * Convert a VT_UI2 to a VT_UI1.
789 * PARAMS
790 * usIn [I] Source
791 * pbOut [O] Destination
793 * RETURNS
794 * Success: S_OK.
795 * Failure: E_INVALIDARG, if the source value is invalid
796 * DISP_E_OVERFLOW, if the value will not fit in the destination
798 HRESULT WINAPI VarUI1FromUI2(USHORT usIn, BYTE* pbOut)
800 return _VarUI1FromUI2(usIn, pbOut);
803 /************************************************************************
804 * VarUI1FromUI4 (OLEAUT32.239)
806 * Convert a VT_UI4 to a VT_UI1.
808 * PARAMS
809 * ulIn [I] Source
810 * pbOut [O] Destination
812 * RETURNS
813 * Success: S_OK.
814 * Failure: E_INVALIDARG, if the source value is invalid
815 * DISP_E_OVERFLOW, if the value will not fit in the destination
817 HRESULT WINAPI VarUI1FromUI4(ULONG ulIn, BYTE* pbOut)
819 return _VarUI1FromUI4(ulIn, pbOut);
822 /************************************************************************
823 * VarUI1FromDec (OLEAUT32.240)
825 * Convert a VT_DECIMAL to a VT_UI1.
827 * PARAMS
828 * pDecIn [I] Source
829 * pbOut [O] Destination
831 * RETURNS
832 * Success: S_OK.
833 * Failure: E_INVALIDARG, if the source value is invalid
834 * DISP_E_OVERFLOW, if the value will not fit in the destination
836 HRESULT WINAPI VarUI1FromDec(DECIMAL *pdecIn, BYTE* pbOut)
838 LONG64 i64;
839 HRESULT hRet;
841 hRet = VarI8FromDec(pdecIn, &i64);
843 if (SUCCEEDED(hRet))
844 hRet = _VarUI1FromI8(i64, pbOut);
845 return hRet;
848 /************************************************************************
849 * VarUI1FromI8 (OLEAUT32.372)
851 * Convert a VT_I8 to a VT_UI1.
853 * PARAMS
854 * llIn [I] Source
855 * pbOut [O] Destination
857 * RETURNS
858 * Success: S_OK.
859 * Failure: E_INVALIDARG, if the source value is invalid
860 * DISP_E_OVERFLOW, if the value will not fit in the destination
862 HRESULT WINAPI VarUI1FromI8(LONG64 llIn, BYTE* pbOut)
864 return _VarUI1FromI8(llIn, pbOut);
867 /************************************************************************
868 * VarUI1FromUI8 (OLEAUT32.373)
870 * Convert a VT_UI8 to a VT_UI1.
872 * PARAMS
873 * ullIn [I] Source
874 * pbOut [O] Destination
876 * RETURNS
877 * Success: S_OK.
878 * Failure: E_INVALIDARG, if the source value is invalid
879 * DISP_E_OVERFLOW, if the value will not fit in the destination
881 HRESULT WINAPI VarUI1FromUI8(ULONG64 ullIn, BYTE* pbOut)
883 return _VarUI1FromUI8(ullIn, pbOut);
887 /* I2
890 /************************************************************************
891 * VarI2FromUI1 (OLEAUT32.48)
893 * Convert a VT_UI2 to a VT_I2.
895 * PARAMS
896 * bIn [I] Source
897 * psOut [O] Destination
899 * RETURNS
900 * S_OK.
902 HRESULT WINAPI VarI2FromUI1(BYTE bIn, SHORT* psOut)
904 return _VarI2FromUI1(bIn, psOut);
907 /************************************************************************
908 * VarI2FromI4 (OLEAUT32.49)
910 * Convert a VT_I4 to a VT_I2.
912 * PARAMS
913 * iIn [I] Source
914 * psOut [O] Destination
916 * RETURNS
917 * Success: S_OK.
918 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
920 HRESULT WINAPI VarI2FromI4(LONG iIn, SHORT* psOut)
922 return _VarI2FromI4(iIn, psOut);
925 /************************************************************************
926 * VarI2FromR4 (OLEAUT32.50)
928 * Convert a VT_R4 to a VT_I2.
930 * PARAMS
931 * fltIn [I] Source
932 * psOut [O] Destination
934 * RETURNS
935 * Success: S_OK.
936 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
938 HRESULT WINAPI VarI2FromR4(FLOAT fltIn, SHORT* psOut)
940 return VarI2FromR8(fltIn, psOut);
943 /************************************************************************
944 * VarI2FromR8 (OLEAUT32.51)
946 * Convert a VT_R8 to a VT_I2.
948 * PARAMS
949 * dblIn [I] Source
950 * psOut [O] Destination
952 * RETURNS
953 * Success: S_OK.
954 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
956 * NOTES
957 * See VarI8FromR8() for details concerning rounding.
959 HRESULT WINAPI VarI2FromR8(double dblIn, SHORT* psOut)
961 if (dblIn < I2_MIN - 0.5 || dblIn >= I2_MAX + 0.5)
962 return DISP_E_OVERFLOW;
963 VARIANT_DutchRound(SHORT, dblIn, *psOut);
964 return S_OK;
967 /************************************************************************
968 * VarI2FromCy (OLEAUT32.52)
970 * Convert a VT_CY to a VT_I2.
972 * PARAMS
973 * cyIn [I] Source
974 * psOut [O] Destination
976 * RETURNS
977 * Success: S_OK.
978 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
980 HRESULT WINAPI VarI2FromCy(CY cyIn, SHORT* psOut)
982 LONG i = I2_MAX + 1;
984 VarI4FromCy(cyIn, &i);
985 return _VarI2FromI4(i, psOut);
988 /************************************************************************
989 * VarI2FromDate (OLEAUT32.53)
991 * Convert a VT_DATE to a VT_I2.
993 * PARAMS
994 * dateIn [I] Source
995 * psOut [O] Destination
997 * RETURNS
998 * Success: S_OK.
999 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1001 HRESULT WINAPI VarI2FromDate(DATE dateIn, SHORT* psOut)
1003 return VarI2FromR8(dateIn, psOut);
1006 /************************************************************************
1007 * VarI2FromStr (OLEAUT32.54)
1009 * Convert a VT_BSTR to a VT_I2.
1011 * PARAMS
1012 * strIn [I] Source
1013 * lcid [I] LCID for the conversion
1014 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
1015 * psOut [O] Destination
1017 * RETURNS
1018 * Success: S_OK.
1019 * Failure: E_INVALIDARG, if any parameter is invalid
1020 * DISP_E_OVERFLOW, if the value will not fit in the destination
1021 * DISP_E_TYPEMISMATCH, if the type cannot be converted
1023 HRESULT WINAPI VarI2FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, SHORT* psOut)
1025 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, psOut, VT_I2);
1028 /************************************************************************
1029 * VarI2FromDisp (OLEAUT32.55)
1031 * Convert a VT_DISPATCH to a VT_I2.
1033 * PARAMS
1034 * pdispIn [I] Source
1035 * lcid [I] LCID for conversion
1036 * psOut [O] Destination
1038 * RETURNS
1039 * Success: S_OK.
1040 * Failure: E_INVALIDARG, if pdispIn is invalid,
1041 * DISP_E_OVERFLOW, if the value will not fit in the destination,
1042 * DISP_E_TYPEMISMATCH, if the type cannot be converted
1044 HRESULT WINAPI VarI2FromDisp(IDispatch* pdispIn, LCID lcid, SHORT* psOut)
1046 return VARIANT_FromDisp(pdispIn, lcid, psOut, VT_I2, 0);
1049 /************************************************************************
1050 * VarI2FromBool (OLEAUT32.56)
1052 * Convert a VT_BOOL to a VT_I2.
1054 * PARAMS
1055 * boolIn [I] Source
1056 * psOut [O] Destination
1058 * RETURNS
1059 * S_OK.
1061 HRESULT WINAPI VarI2FromBool(VARIANT_BOOL boolIn, SHORT* psOut)
1063 return _VarI2FromBool(boolIn, psOut);
1066 /************************************************************************
1067 * VarI2FromI1 (OLEAUT32.205)
1069 * Convert a VT_I1 to a VT_I2.
1071 * PARAMS
1072 * cIn [I] Source
1073 * psOut [O] Destination
1075 * RETURNS
1076 * S_OK.
1078 HRESULT WINAPI VarI2FromI1(signed char cIn, SHORT* psOut)
1080 return _VarI2FromI1(cIn, psOut);
1083 /************************************************************************
1084 * VarI2FromUI2 (OLEAUT32.206)
1086 * Convert a VT_UI2 to a VT_I2.
1088 * PARAMS
1089 * usIn [I] Source
1090 * psOut [O] Destination
1092 * RETURNS
1093 * Success: S_OK.
1094 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1096 HRESULT WINAPI VarI2FromUI2(USHORT usIn, SHORT* psOut)
1098 return _VarI2FromUI2(usIn, psOut);
1101 /************************************************************************
1102 * VarI2FromUI4 (OLEAUT32.207)
1104 * Convert a VT_UI4 to a VT_I2.
1106 * PARAMS
1107 * ulIn [I] Source
1108 * psOut [O] Destination
1110 * RETURNS
1111 * Success: S_OK.
1112 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1114 HRESULT WINAPI VarI2FromUI4(ULONG ulIn, SHORT* psOut)
1116 return _VarI2FromUI4(ulIn, psOut);
1119 /************************************************************************
1120 * VarI2FromDec (OLEAUT32.208)
1122 * Convert a VT_DECIMAL to a VT_I2.
1124 * PARAMS
1125 * pDecIn [I] Source
1126 * psOut [O] Destination
1128 * RETURNS
1129 * Success: S_OK.
1130 * Failure: E_INVALIDARG, if the source value is invalid
1131 * DISP_E_OVERFLOW, if the value will not fit in the destination
1133 HRESULT WINAPI VarI2FromDec(DECIMAL *pdecIn, SHORT* psOut)
1135 LONG64 i64;
1136 HRESULT hRet;
1138 hRet = VarI8FromDec(pdecIn, &i64);
1140 if (SUCCEEDED(hRet))
1141 hRet = _VarI2FromI8(i64, psOut);
1142 return hRet;
1145 /************************************************************************
1146 * VarI2FromI8 (OLEAUT32.346)
1148 * Convert a VT_I8 to a VT_I2.
1150 * PARAMS
1151 * llIn [I] Source
1152 * psOut [O] Destination
1154 * RETURNS
1155 * Success: S_OK.
1156 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1158 HRESULT WINAPI VarI2FromI8(LONG64 llIn, SHORT* psOut)
1160 return _VarI2FromI8(llIn, psOut);
1163 /************************************************************************
1164 * VarI2FromUI8 (OLEAUT32.347)
1166 * Convert a VT_UI8 to a VT_I2.
1168 * PARAMS
1169 * ullIn [I] Source
1170 * psOut [O] Destination
1172 * RETURNS
1173 * Success: S_OK.
1174 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1176 HRESULT WINAPI VarI2FromUI8(ULONG64 ullIn, SHORT* psOut)
1178 return _VarI2FromUI8(ullIn, psOut);
1181 /* UI2
1184 /************************************************************************
1185 * VarUI2FromUI1 (OLEAUT32.257)
1187 * Convert a VT_UI1 to a VT_UI2.
1189 * PARAMS
1190 * bIn [I] Source
1191 * pusOut [O] Destination
1193 * RETURNS
1194 * S_OK.
1196 HRESULT WINAPI VarUI2FromUI1(BYTE bIn, USHORT* pusOut)
1198 return _VarUI2FromUI1(bIn, pusOut);
1201 /************************************************************************
1202 * VarUI2FromI2 (OLEAUT32.258)
1204 * Convert a VT_I2 to a VT_UI2.
1206 * PARAMS
1207 * sIn [I] Source
1208 * pusOut [O] Destination
1210 * RETURNS
1211 * Success: S_OK.
1212 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1214 HRESULT WINAPI VarUI2FromI2(SHORT sIn, USHORT* pusOut)
1216 return _VarUI2FromI2(sIn, pusOut);
1219 /************************************************************************
1220 * VarUI2FromI4 (OLEAUT32.259)
1222 * Convert a VT_I4 to a VT_UI2.
1224 * PARAMS
1225 * iIn [I] Source
1226 * pusOut [O] Destination
1228 * RETURNS
1229 * Success: S_OK.
1230 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1232 HRESULT WINAPI VarUI2FromI4(LONG iIn, USHORT* pusOut)
1234 return _VarUI2FromI4(iIn, pusOut);
1237 /************************************************************************
1238 * VarUI2FromR4 (OLEAUT32.260)
1240 * Convert a VT_R4 to a VT_UI2.
1242 * PARAMS
1243 * fltIn [I] Source
1244 * pusOut [O] Destination
1246 * RETURNS
1247 * Success: S_OK.
1248 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1250 HRESULT WINAPI VarUI2FromR4(FLOAT fltIn, USHORT* pusOut)
1252 return VarUI2FromR8(fltIn, pusOut);
1255 /************************************************************************
1256 * VarUI2FromR8 (OLEAUT32.261)
1258 * Convert a VT_R8 to a VT_UI2.
1260 * PARAMS
1261 * dblIn [I] Source
1262 * pusOut [O] Destination
1264 * RETURNS
1265 * Success: S_OK.
1266 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1268 * NOTES
1269 * See VarI8FromR8() for details concerning rounding.
1271 HRESULT WINAPI VarUI2FromR8(double dblIn, USHORT* pusOut)
1273 if (dblIn < -0.5 || dblIn >= UI2_MAX + 0.5)
1274 return DISP_E_OVERFLOW;
1275 VARIANT_DutchRound(USHORT, dblIn, *pusOut);
1276 return S_OK;
1279 /************************************************************************
1280 * VarUI2FromDate (OLEAUT32.262)
1282 * Convert a VT_DATE to a VT_UI2.
1284 * PARAMS
1285 * dateIn [I] Source
1286 * pusOut [O] Destination
1288 * RETURNS
1289 * Success: S_OK.
1290 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1292 HRESULT WINAPI VarUI2FromDate(DATE dateIn, USHORT* pusOut)
1294 return VarUI2FromR8(dateIn, pusOut);
1297 /************************************************************************
1298 * VarUI2FromCy (OLEAUT32.263)
1300 * Convert a VT_CY to a VT_UI2.
1302 * PARAMS
1303 * cyIn [I] Source
1304 * pusOut [O] Destination
1306 * RETURNS
1307 * Success: S_OK.
1308 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1310 * NOTES
1311 * Negative values >= -5000 will be converted to 0.
1313 HRESULT WINAPI VarUI2FromCy(CY cyIn, USHORT* pusOut)
1315 ULONG i = UI2_MAX + 1;
1317 VarUI4FromCy(cyIn, &i);
1318 return _VarUI2FromUI4(i, pusOut);
1321 /************************************************************************
1322 * VarUI2FromStr (OLEAUT32.264)
1324 * Convert a VT_BSTR to a VT_UI2.
1326 * PARAMS
1327 * strIn [I] Source
1328 * lcid [I] LCID for the conversion
1329 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
1330 * pusOut [O] Destination
1332 * RETURNS
1333 * Success: S_OK.
1334 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1335 * DISP_E_TYPEMISMATCH, if the type cannot be converted
1337 HRESULT WINAPI VarUI2FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, USHORT* pusOut)
1339 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pusOut, VT_UI2);
1342 /************************************************************************
1343 * VarUI2FromDisp (OLEAUT32.265)
1345 * Convert a VT_DISPATCH to a VT_UI2.
1347 * PARAMS
1348 * pdispIn [I] Source
1349 * lcid [I] LCID for conversion
1350 * pusOut [O] Destination
1352 * RETURNS
1353 * Success: S_OK.
1354 * Failure: E_INVALIDARG, if the source value is invalid
1355 * DISP_E_OVERFLOW, if the value will not fit in the destination
1356 * DISP_E_TYPEMISMATCH, if the type cannot be converted
1358 HRESULT WINAPI VarUI2FromDisp(IDispatch* pdispIn, LCID lcid, USHORT* pusOut)
1360 return VARIANT_FromDisp(pdispIn, lcid, pusOut, VT_UI2, 0);
1363 /************************************************************************
1364 * VarUI2FromBool (OLEAUT32.266)
1366 * Convert a VT_BOOL to a VT_UI2.
1368 * PARAMS
1369 * boolIn [I] Source
1370 * pusOut [O] Destination
1372 * RETURNS
1373 * S_OK.
1375 HRESULT WINAPI VarUI2FromBool(VARIANT_BOOL boolIn, USHORT* pusOut)
1377 return _VarUI2FromBool(boolIn, pusOut);
1380 /************************************************************************
1381 * VarUI2FromI1 (OLEAUT32.267)
1383 * Convert a VT_I1 to a VT_UI2.
1385 * PARAMS
1386 * cIn [I] Source
1387 * pusOut [O] Destination
1389 * RETURNS
1390 * Success: S_OK.
1391 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1393 HRESULT WINAPI VarUI2FromI1(signed char cIn, USHORT* pusOut)
1395 return _VarUI2FromI1(cIn, pusOut);
1398 /************************************************************************
1399 * VarUI2FromUI4 (OLEAUT32.268)
1401 * Convert a VT_UI4 to a VT_UI2.
1403 * PARAMS
1404 * ulIn [I] Source
1405 * pusOut [O] Destination
1407 * RETURNS
1408 * Success: S_OK.
1409 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1411 HRESULT WINAPI VarUI2FromUI4(ULONG ulIn, USHORT* pusOut)
1413 return _VarUI2FromUI4(ulIn, pusOut);
1416 /************************************************************************
1417 * VarUI2FromDec (OLEAUT32.269)
1419 * Convert a VT_DECIMAL to a VT_UI2.
1421 * PARAMS
1422 * pDecIn [I] Source
1423 * pusOut [O] Destination
1425 * RETURNS
1426 * Success: S_OK.
1427 * Failure: E_INVALIDARG, if the source value is invalid
1428 * DISP_E_OVERFLOW, if the value will not fit in the destination
1430 HRESULT WINAPI VarUI2FromDec(DECIMAL *pdecIn, USHORT* pusOut)
1432 LONG64 i64;
1433 HRESULT hRet;
1435 hRet = VarI8FromDec(pdecIn, &i64);
1437 if (SUCCEEDED(hRet))
1438 hRet = _VarUI2FromI8(i64, pusOut);
1439 return hRet;
1442 /************************************************************************
1443 * VarUI2FromI8 (OLEAUT32.378)
1445 * Convert a VT_I8 to a VT_UI2.
1447 * PARAMS
1448 * llIn [I] Source
1449 * pusOut [O] Destination
1451 * RETURNS
1452 * Success: S_OK.
1453 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1455 HRESULT WINAPI VarUI2FromI8(LONG64 llIn, USHORT* pusOut)
1457 return _VarUI2FromI8(llIn, pusOut);
1460 /************************************************************************
1461 * VarUI2FromUI8 (OLEAUT32.379)
1463 * Convert a VT_UI8 to a VT_UI2.
1465 * PARAMS
1466 * ullIn [I] Source
1467 * pusOut [O] Destination
1469 * RETURNS
1470 * Success: S_OK.
1471 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1473 HRESULT WINAPI VarUI2FromUI8(ULONG64 ullIn, USHORT* pusOut)
1475 return _VarUI2FromUI8(ullIn, pusOut);
1478 /* I4
1481 /************************************************************************
1482 * VarI4FromUI1 (OLEAUT32.58)
1484 * Convert a VT_UI1 to a VT_I4.
1486 * PARAMS
1487 * bIn [I] Source
1488 * piOut [O] Destination
1490 * RETURNS
1491 * S_OK.
1493 HRESULT WINAPI VarI4FromUI1(BYTE bIn, LONG *piOut)
1495 return _VarI4FromUI1(bIn, piOut);
1498 /************************************************************************
1499 * VarI4FromI2 (OLEAUT32.59)
1501 * Convert a VT_I2 to a VT_I4.
1503 * PARAMS
1504 * sIn [I] Source
1505 * piOut [O] Destination
1507 * RETURNS
1508 * Success: S_OK.
1509 * Failure: E_INVALIDARG, if the source value is invalid
1510 * DISP_E_OVERFLOW, if the value will not fit in the destination
1512 HRESULT WINAPI VarI4FromI2(SHORT sIn, LONG *piOut)
1514 return _VarI4FromI2(sIn, piOut);
1517 /************************************************************************
1518 * VarI4FromR4 (OLEAUT32.60)
1520 * Convert a VT_R4 to a VT_I4.
1522 * PARAMS
1523 * fltIn [I] Source
1524 * piOut [O] Destination
1526 * RETURNS
1527 * Success: S_OK.
1528 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1530 HRESULT WINAPI VarI4FromR4(FLOAT fltIn, LONG *piOut)
1532 return VarI4FromR8(fltIn, piOut);
1535 /************************************************************************
1536 * VarI4FromR8 (OLEAUT32.61)
1538 * Convert a VT_R8 to a VT_I4.
1540 * PARAMS
1541 * dblIn [I] Source
1542 * piOut [O] Destination
1544 * RETURNS
1545 * Success: S_OK.
1546 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1548 * NOTES
1549 * See VarI8FromR8() for details concerning rounding.
1551 HRESULT WINAPI VarI4FromR8(double dblIn, LONG *piOut)
1553 if (dblIn < I4_MIN - 0.5 || dblIn >= I4_MAX + 0.5)
1554 return DISP_E_OVERFLOW;
1555 VARIANT_DutchRound(LONG, dblIn, *piOut);
1556 return S_OK;
1559 /************************************************************************
1560 * VarI4FromCy (OLEAUT32.62)
1562 * Convert a VT_CY to a VT_I4.
1564 * PARAMS
1565 * cyIn [I] Source
1566 * piOut [O] Destination
1568 * RETURNS
1569 * Success: S_OK.
1570 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1572 HRESULT WINAPI VarI4FromCy(CY cyIn, LONG *piOut)
1574 double d = cyIn.int64 / CY_MULTIPLIER_F;
1575 return VarI4FromR8(d, piOut);
1578 /************************************************************************
1579 * VarI4FromDate (OLEAUT32.63)
1581 * Convert a VT_DATE to a VT_I4.
1583 * PARAMS
1584 * dateIn [I] Source
1585 * piOut [O] Destination
1587 * RETURNS
1588 * Success: S_OK.
1589 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1591 HRESULT WINAPI VarI4FromDate(DATE dateIn, LONG *piOut)
1593 return VarI4FromR8(dateIn, piOut);
1596 /************************************************************************
1597 * VarI4FromStr (OLEAUT32.64)
1599 * Convert a VT_BSTR to a VT_I4.
1601 * PARAMS
1602 * strIn [I] Source
1603 * lcid [I] LCID for the conversion
1604 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
1605 * piOut [O] Destination
1607 * RETURNS
1608 * Success: S_OK.
1609 * Failure: E_INVALIDARG, if any parameter is invalid
1610 * DISP_E_OVERFLOW, if the value will not fit in the destination
1611 * DISP_E_TYPEMISMATCH, if strIn cannot be converted
1613 HRESULT WINAPI VarI4FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, LONG *piOut)
1615 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, piOut, VT_I4);
1618 /************************************************************************
1619 * VarI4FromDisp (OLEAUT32.65)
1621 * Convert a VT_DISPATCH to a VT_I4.
1623 * PARAMS
1624 * pdispIn [I] Source
1625 * lcid [I] LCID for conversion
1626 * piOut [O] Destination
1628 * RETURNS
1629 * Success: S_OK.
1630 * Failure: E_INVALIDARG, if the source value is invalid
1631 * DISP_E_OVERFLOW, if the value will not fit in the destination
1632 * DISP_E_TYPEMISMATCH, if the type cannot be converted
1634 HRESULT WINAPI VarI4FromDisp(IDispatch* pdispIn, LCID lcid, LONG *piOut)
1636 return VARIANT_FromDisp(pdispIn, lcid, piOut, VT_I4, 0);
1639 /************************************************************************
1640 * VarI4FromBool (OLEAUT32.66)
1642 * Convert a VT_BOOL to a VT_I4.
1644 * PARAMS
1645 * boolIn [I] Source
1646 * piOut [O] Destination
1648 * RETURNS
1649 * S_OK.
1651 HRESULT WINAPI VarI4FromBool(VARIANT_BOOL boolIn, LONG *piOut)
1653 return _VarI4FromBool(boolIn, piOut);
1656 /************************************************************************
1657 * VarI4FromI1 (OLEAUT32.209)
1659 * Convert a VT_I1 to a VT_I4.
1661 * PARAMS
1662 * cIn [I] Source
1663 * piOut [O] Destination
1665 * RETURNS
1666 * S_OK.
1668 HRESULT WINAPI VarI4FromI1(signed char cIn, LONG *piOut)
1670 return _VarI4FromI1(cIn, piOut);
1673 /************************************************************************
1674 * VarI4FromUI2 (OLEAUT32.210)
1676 * Convert a VT_UI2 to a VT_I4.
1678 * PARAMS
1679 * usIn [I] Source
1680 * piOut [O] Destination
1682 * RETURNS
1683 * S_OK.
1685 HRESULT WINAPI VarI4FromUI2(USHORT usIn, LONG *piOut)
1687 return _VarI4FromUI2(usIn, piOut);
1690 /************************************************************************
1691 * VarI4FromUI4 (OLEAUT32.211)
1693 * Convert a VT_UI4 to a VT_I4.
1695 * PARAMS
1696 * ulIn [I] Source
1697 * piOut [O] Destination
1699 * RETURNS
1700 * Success: S_OK.
1701 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1703 HRESULT WINAPI VarI4FromUI4(ULONG ulIn, LONG *piOut)
1705 return _VarI4FromUI4(ulIn, piOut);
1708 /************************************************************************
1709 * VarI4FromDec (OLEAUT32.212)
1711 * Convert a VT_DECIMAL to a VT_I4.
1713 * PARAMS
1714 * pDecIn [I] Source
1715 * piOut [O] Destination
1717 * RETURNS
1718 * Success: S_OK.
1719 * Failure: E_INVALIDARG, if pdecIn is invalid
1720 * DISP_E_OVERFLOW, if the value will not fit in the destination
1722 HRESULT WINAPI VarI4FromDec(DECIMAL *pdecIn, LONG *piOut)
1724 LONG64 i64;
1725 HRESULT hRet;
1727 hRet = VarI8FromDec(pdecIn, &i64);
1729 if (SUCCEEDED(hRet))
1730 hRet = _VarI4FromI8(i64, piOut);
1731 return hRet;
1734 /************************************************************************
1735 * VarI4FromI8 (OLEAUT32.348)
1737 * Convert a VT_I8 to a VT_I4.
1739 * PARAMS
1740 * llIn [I] Source
1741 * piOut [O] Destination
1743 * RETURNS
1744 * Success: S_OK.
1745 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1747 HRESULT WINAPI VarI4FromI8(LONG64 llIn, LONG *piOut)
1749 return _VarI4FromI8(llIn, piOut);
1752 /************************************************************************
1753 * VarI4FromUI8 (OLEAUT32.349)
1755 * Convert a VT_UI8 to a VT_I4.
1757 * PARAMS
1758 * ullIn [I] Source
1759 * piOut [O] Destination
1761 * RETURNS
1762 * Success: S_OK.
1763 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1765 HRESULT WINAPI VarI4FromUI8(ULONG64 ullIn, LONG *piOut)
1767 return _VarI4FromUI8(ullIn, piOut);
1770 /* UI4
1773 /************************************************************************
1774 * VarUI4FromUI1 (OLEAUT32.270)
1776 * Convert a VT_UI1 to a VT_UI4.
1778 * PARAMS
1779 * bIn [I] Source
1780 * pulOut [O] Destination
1782 * RETURNS
1783 * S_OK.
1785 HRESULT WINAPI VarUI4FromUI1(BYTE bIn, ULONG *pulOut)
1787 return _VarUI4FromUI1(bIn, pulOut);
1790 /************************************************************************
1791 * VarUI4FromI2 (OLEAUT32.271)
1793 * Convert a VT_I2 to a VT_UI4.
1795 * PARAMS
1796 * sIn [I] Source
1797 * pulOut [O] Destination
1799 * RETURNS
1800 * Success: S_OK.
1801 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1803 HRESULT WINAPI VarUI4FromI2(SHORT sIn, ULONG *pulOut)
1805 return _VarUI4FromI2(sIn, pulOut);
1808 /************************************************************************
1809 * VarUI4FromI4 (OLEAUT32.272)
1811 * Convert a VT_I4 to a VT_UI4.
1813 * PARAMS
1814 * iIn [I] Source
1815 * pulOut [O] Destination
1817 * RETURNS
1818 * Success: S_OK.
1819 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1821 HRESULT WINAPI VarUI4FromI4(LONG iIn, ULONG *pulOut)
1823 return _VarUI4FromI4(iIn, pulOut);
1826 /************************************************************************
1827 * VarUI4FromR4 (OLEAUT32.273)
1829 * Convert a VT_R4 to a VT_UI4.
1831 * PARAMS
1832 * fltIn [I] Source
1833 * pulOut [O] Destination
1835 * RETURNS
1836 * Success: S_OK.
1837 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1839 HRESULT WINAPI VarUI4FromR4(FLOAT fltIn, ULONG *pulOut)
1841 return VarUI4FromR8(fltIn, pulOut);
1844 /************************************************************************
1845 * VarUI4FromR8 (OLEAUT32.274)
1847 * Convert a VT_R8 to a VT_UI4.
1849 * PARAMS
1850 * dblIn [I] Source
1851 * pulOut [O] Destination
1853 * RETURNS
1854 * Success: S_OK.
1855 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1857 * NOTES
1858 * See VarI8FromR8() for details concerning rounding.
1860 HRESULT WINAPI VarUI4FromR8(double dblIn, ULONG *pulOut)
1862 if (dblIn < -0.5 || dblIn >= UI4_MAX + 0.5)
1863 return DISP_E_OVERFLOW;
1864 VARIANT_DutchRound(ULONG, dblIn, *pulOut);
1865 return S_OK;
1868 /************************************************************************
1869 * VarUI4FromDate (OLEAUT32.275)
1871 * Convert a VT_DATE to a VT_UI4.
1873 * PARAMS
1874 * dateIn [I] Source
1875 * pulOut [O] Destination
1877 * RETURNS
1878 * Success: S_OK.
1879 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1881 HRESULT WINAPI VarUI4FromDate(DATE dateIn, ULONG *pulOut)
1883 return VarUI4FromR8(dateIn, pulOut);
1886 /************************************************************************
1887 * VarUI4FromCy (OLEAUT32.276)
1889 * Convert a VT_CY to a VT_UI4.
1891 * PARAMS
1892 * cyIn [I] Source
1893 * pulOut [O] Destination
1895 * RETURNS
1896 * Success: S_OK.
1897 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1899 HRESULT WINAPI VarUI4FromCy(CY cyIn, ULONG *pulOut)
1901 double d = cyIn.int64 / CY_MULTIPLIER_F;
1902 return VarUI4FromR8(d, pulOut);
1905 /************************************************************************
1906 * VarUI4FromStr (OLEAUT32.277)
1908 * Convert a VT_BSTR to a VT_UI4.
1910 * PARAMS
1911 * strIn [I] Source
1912 * lcid [I] LCID for the conversion
1913 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
1914 * pulOut [O] Destination
1916 * RETURNS
1917 * Success: S_OK.
1918 * Failure: E_INVALIDARG, if any parameter is invalid
1919 * DISP_E_OVERFLOW, if the value will not fit in the destination
1920 * DISP_E_TYPEMISMATCH, if strIn cannot be converted
1922 HRESULT WINAPI VarUI4FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, ULONG *pulOut)
1924 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pulOut, VT_UI4);
1927 /************************************************************************
1928 * VarUI4FromDisp (OLEAUT32.278)
1930 * Convert a VT_DISPATCH to a VT_UI4.
1932 * PARAMS
1933 * pdispIn [I] Source
1934 * lcid [I] LCID for conversion
1935 * pulOut [O] Destination
1937 * RETURNS
1938 * Success: S_OK.
1939 * Failure: E_INVALIDARG, if the source value is invalid
1940 * DISP_E_OVERFLOW, if the value will not fit in the destination
1941 * DISP_E_TYPEMISMATCH, if the type cannot be converted
1943 HRESULT WINAPI VarUI4FromDisp(IDispatch* pdispIn, LCID lcid, ULONG *pulOut)
1945 return VARIANT_FromDisp(pdispIn, lcid, pulOut, VT_UI4, 0);
1948 /************************************************************************
1949 * VarUI4FromBool (OLEAUT32.279)
1951 * Convert a VT_BOOL to a VT_UI4.
1953 * PARAMS
1954 * boolIn [I] Source
1955 * pulOut [O] Destination
1957 * RETURNS
1958 * S_OK.
1960 HRESULT WINAPI VarUI4FromBool(VARIANT_BOOL boolIn, ULONG *pulOut)
1962 return _VarUI4FromBool(boolIn, pulOut);
1965 /************************************************************************
1966 * VarUI4FromI1 (OLEAUT32.280)
1968 * Convert a VT_I1 to a VT_UI4.
1970 * PARAMS
1971 * cIn [I] Source
1972 * pulOut [O] Destination
1974 * RETURNS
1975 * Success: S_OK.
1976 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
1978 HRESULT WINAPI VarUI4FromI1(signed char cIn, ULONG *pulOut)
1980 return _VarUI4FromI1(cIn, pulOut);
1983 /************************************************************************
1984 * VarUI4FromUI2 (OLEAUT32.281)
1986 * Convert a VT_UI2 to a VT_UI4.
1988 * PARAMS
1989 * usIn [I] Source
1990 * pulOut [O] Destination
1992 * RETURNS
1993 * S_OK.
1995 HRESULT WINAPI VarUI4FromUI2(USHORT usIn, ULONG *pulOut)
1997 return _VarUI4FromUI2(usIn, pulOut);
2000 /************************************************************************
2001 * VarUI4FromDec (OLEAUT32.282)
2003 * Convert a VT_DECIMAL to a VT_UI4.
2005 * PARAMS
2006 * pDecIn [I] Source
2007 * pulOut [O] Destination
2009 * RETURNS
2010 * Success: S_OK.
2011 * Failure: E_INVALIDARG, if pdecIn is invalid
2012 * DISP_E_OVERFLOW, if the value will not fit in the destination
2014 HRESULT WINAPI VarUI4FromDec(DECIMAL *pdecIn, ULONG *pulOut)
2016 LONG64 i64;
2017 HRESULT hRet;
2019 hRet = VarI8FromDec(pdecIn, &i64);
2021 if (SUCCEEDED(hRet))
2022 hRet = _VarUI4FromI8(i64, pulOut);
2023 return hRet;
2026 /************************************************************************
2027 * VarUI4FromI8 (OLEAUT32.425)
2029 * Convert a VT_I8 to a VT_UI4.
2031 * PARAMS
2032 * llIn [I] Source
2033 * pulOut [O] Destination
2035 * RETURNS
2036 * Success: S_OK.
2037 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2039 HRESULT WINAPI VarUI4FromI8(LONG64 llIn, ULONG *pulOut)
2041 return _VarUI4FromI8(llIn, pulOut);
2044 /************************************************************************
2045 * VarUI4FromUI8 (OLEAUT32.426)
2047 * Convert a VT_UI8 to a VT_UI4.
2049 * PARAMS
2050 * ullIn [I] Source
2051 * pulOut [O] Destination
2053 * RETURNS
2054 * Success: S_OK.
2055 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2057 HRESULT WINAPI VarUI4FromUI8(ULONG64 ullIn, ULONG *pulOut)
2059 return _VarUI4FromUI8(ullIn, pulOut);
2062 /* I8
2065 /************************************************************************
2066 * VarI8FromUI1 (OLEAUT32.333)
2068 * Convert a VT_UI1 to a VT_I8.
2070 * PARAMS
2071 * bIn [I] Source
2072 * pi64Out [O] Destination
2074 * RETURNS
2075 * S_OK.
2077 HRESULT WINAPI VarI8FromUI1(BYTE bIn, LONG64* pi64Out)
2079 return _VarI8FromUI1(bIn, pi64Out);
2083 /************************************************************************
2084 * VarI8FromI2 (OLEAUT32.334)
2086 * Convert a VT_I2 to a VT_I8.
2088 * PARAMS
2089 * sIn [I] Source
2090 * pi64Out [O] Destination
2092 * RETURNS
2093 * S_OK.
2095 HRESULT WINAPI VarI8FromI2(SHORT sIn, LONG64* pi64Out)
2097 return _VarI8FromI2(sIn, pi64Out);
2100 /************************************************************************
2101 * VarI8FromR4 (OLEAUT32.335)
2103 * Convert a VT_R4 to a VT_I8.
2105 * PARAMS
2106 * fltIn [I] Source
2107 * pi64Out [O] Destination
2109 * RETURNS
2110 * Success: S_OK.
2111 * Failure: E_INVALIDARG, if the source value is invalid
2112 * DISP_E_OVERFLOW, if the value will not fit in the destination
2114 HRESULT WINAPI VarI8FromR4(FLOAT fltIn, LONG64* pi64Out)
2116 return VarI8FromR8(fltIn, pi64Out);
2119 /************************************************************************
2120 * VarI8FromR8 (OLEAUT32.336)
2122 * Convert a VT_R8 to a VT_I8.
2124 * PARAMS
2125 * dblIn [I] Source
2126 * pi64Out [O] Destination
2128 * RETURNS
2129 * Success: S_OK.
2130 * Failure: E_INVALIDARG, if the source value is invalid
2131 * DISP_E_OVERFLOW, if the value will not fit in the destination
2133 * NOTES
2134 * Only values that fit into 63 bits are accepted. Due to rounding issues,
2135 * very high or low values will not be accurately converted.
2137 * Numbers are rounded using Dutch rounding, as follows:
2139 *| Fractional Part Sign Direction Example
2140 *| --------------- ---- --------- -------
2141 *| < 0.5 + Down 0.4 -> 0.0
2142 *| < 0.5 - Up -0.4 -> 0.0
2143 *| > 0.5 + Up 0.6 -> 1.0
2144 *| < 0.5 - Up -0.6 -> -1.0
2145 *| = 0.5 + Up/Down Down if even, Up if odd
2146 *| = 0.5 - Up/Down Up if even, Down if odd
2148 * This system is often used in supermarkets.
2150 HRESULT WINAPI VarI8FromR8(double dblIn, LONG64* pi64Out)
2152 if ( dblIn < -4611686018427387904.0 || dblIn >= 4611686018427387904.0)
2153 return DISP_E_OVERFLOW;
2154 VARIANT_DutchRound(LONG64, dblIn, *pi64Out);
2155 return S_OK;
2158 /************************************************************************
2159 * VarI8FromCy (OLEAUT32.337)
2161 * Convert a VT_CY to a VT_I8.
2163 * PARAMS
2164 * cyIn [I] Source
2165 * pi64Out [O] Destination
2167 * RETURNS
2168 * S_OK.
2170 * NOTES
2171 * All negative numbers are rounded down by 1, including those that are
2172 * evenly divisible by 10000 (this is a Win32 bug that Wine mimics).
2173 * Positive numbers are rounded using Dutch rounding: See VarI8FromR8()
2174 * for details.
2176 HRESULT WINAPI VarI8FromCy(CY cyIn, LONG64* pi64Out)
2178 *pi64Out = cyIn.int64 / CY_MULTIPLIER;
2180 if (cyIn.int64 < 0)
2181 (*pi64Out)--; /* Mimic Win32 bug */
2182 else
2184 cyIn.int64 -= *pi64Out * CY_MULTIPLIER; /* cyIn.s.Lo now holds fractional remainder */
2186 if (cyIn.s.Lo > CY_HALF || (cyIn.s.Lo == CY_HALF && (*pi64Out & 0x1)))
2187 (*pi64Out)++;
2189 return S_OK;
2192 /************************************************************************
2193 * VarI8FromDate (OLEAUT32.338)
2195 * Convert a VT_DATE to a VT_I8.
2197 * PARAMS
2198 * dateIn [I] Source
2199 * pi64Out [O] Destination
2201 * RETURNS
2202 * Success: S_OK.
2203 * Failure: E_INVALIDARG, if the source value is invalid
2204 * DISP_E_OVERFLOW, if the value will not fit in the destination
2205 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2207 HRESULT WINAPI VarI8FromDate(DATE dateIn, LONG64* pi64Out)
2209 return VarI8FromR8(dateIn, pi64Out);
2212 /************************************************************************
2213 * VarI8FromStr (OLEAUT32.339)
2215 * Convert a VT_BSTR to a VT_I8.
2217 * PARAMS
2218 * strIn [I] Source
2219 * lcid [I] LCID for the conversion
2220 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
2221 * pi64Out [O] Destination
2223 * RETURNS
2224 * Success: S_OK.
2225 * Failure: E_INVALIDARG, if the source value is invalid
2226 * DISP_E_OVERFLOW, if the value will not fit in the destination
2227 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2229 HRESULT WINAPI VarI8FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, LONG64* pi64Out)
2231 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pi64Out, VT_I8);
2234 /************************************************************************
2235 * VarI8FromDisp (OLEAUT32.340)
2237 * Convert a VT_DISPATCH to a VT_I8.
2239 * PARAMS
2240 * pdispIn [I] Source
2241 * lcid [I] LCID for conversion
2242 * pi64Out [O] Destination
2244 * RETURNS
2245 * Success: S_OK.
2246 * Failure: E_INVALIDARG, if the source value is invalid
2247 * DISP_E_OVERFLOW, if the value will not fit in the destination
2248 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2250 HRESULT WINAPI VarI8FromDisp(IDispatch* pdispIn, LCID lcid, LONG64* pi64Out)
2252 return VARIANT_FromDisp(pdispIn, lcid, pi64Out, VT_I8, 0);
2255 /************************************************************************
2256 * VarI8FromBool (OLEAUT32.341)
2258 * Convert a VT_BOOL to a VT_I8.
2260 * PARAMS
2261 * boolIn [I] Source
2262 * pi64Out [O] Destination
2264 * RETURNS
2265 * S_OK.
2267 HRESULT WINAPI VarI8FromBool(VARIANT_BOOL boolIn, LONG64* pi64Out)
2269 return VarI8FromI2(boolIn, pi64Out);
2272 /************************************************************************
2273 * VarI8FromI1 (OLEAUT32.342)
2275 * Convert a VT_I1 to a VT_I8.
2277 * PARAMS
2278 * cIn [I] Source
2279 * pi64Out [O] Destination
2281 * RETURNS
2282 * S_OK.
2284 HRESULT WINAPI VarI8FromI1(signed char cIn, LONG64* pi64Out)
2286 return _VarI8FromI1(cIn, pi64Out);
2289 /************************************************************************
2290 * VarI8FromUI2 (OLEAUT32.343)
2292 * Convert a VT_UI2 to a VT_I8.
2294 * PARAMS
2295 * usIn [I] Source
2296 * pi64Out [O] Destination
2298 * RETURNS
2299 * S_OK.
2301 HRESULT WINAPI VarI8FromUI2(USHORT usIn, LONG64* pi64Out)
2303 return _VarI8FromUI2(usIn, pi64Out);
2306 /************************************************************************
2307 * VarI8FromUI4 (OLEAUT32.344)
2309 * Convert a VT_UI4 to a VT_I8.
2311 * PARAMS
2312 * ulIn [I] Source
2313 * pi64Out [O] Destination
2315 * RETURNS
2316 * S_OK.
2318 HRESULT WINAPI VarI8FromUI4(ULONG ulIn, LONG64* pi64Out)
2320 return _VarI8FromUI4(ulIn, pi64Out);
2323 /************************************************************************
2324 * VarI8FromDec (OLEAUT32.345)
2326 * Convert a VT_DECIMAL to a VT_I8.
2328 * PARAMS
2329 * pDecIn [I] Source
2330 * pi64Out [O] Destination
2332 * RETURNS
2333 * Success: S_OK.
2334 * Failure: E_INVALIDARG, if the source value is invalid
2335 * DISP_E_OVERFLOW, if the value will not fit in the destination
2337 HRESULT WINAPI VarI8FromDec(DECIMAL *pdecIn, LONG64* pi64Out)
2339 if (!DEC_SCALE(pdecIn))
2341 /* This decimal is just a 96 bit integer */
2342 if (DEC_SIGN(pdecIn) & ~DECIMAL_NEG)
2343 return E_INVALIDARG;
2345 if (DEC_HI32(pdecIn) || DEC_MID32(pdecIn) & 0x80000000)
2346 return DISP_E_OVERFLOW;
2348 if (DEC_SIGN(pdecIn))
2349 *pi64Out = -DEC_LO64(pdecIn);
2350 else
2351 *pi64Out = DEC_LO64(pdecIn);
2352 return S_OK;
2354 else
2356 /* Decimal contains a floating point number */
2357 HRESULT hRet;
2358 double dbl;
2360 hRet = VarR8FromDec(pdecIn, &dbl);
2361 if (SUCCEEDED(hRet))
2362 hRet = VarI8FromR8(dbl, pi64Out);
2363 return hRet;
2367 /************************************************************************
2368 * VarI8FromUI8 (OLEAUT32.427)
2370 * Convert a VT_UI8 to a VT_I8.
2372 * PARAMS
2373 * ullIn [I] Source
2374 * pi64Out [O] Destination
2376 * RETURNS
2377 * Success: S_OK.
2378 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2380 HRESULT WINAPI VarI8FromUI8(ULONG64 ullIn, LONG64* pi64Out)
2382 return _VarI8FromUI8(ullIn, pi64Out);
2385 /* UI8
2388 /************************************************************************
2389 * VarUI8FromI8 (OLEAUT32.428)
2391 * Convert a VT_I8 to a VT_UI8.
2393 * PARAMS
2394 * ulIn [I] Source
2395 * pui64Out [O] Destination
2397 * RETURNS
2398 * Success: S_OK.
2399 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2401 HRESULT WINAPI VarUI8FromI8(LONG64 llIn, ULONG64* pui64Out)
2403 return _VarUI8FromI8(llIn, pui64Out);
2406 /************************************************************************
2407 * VarUI8FromUI1 (OLEAUT32.429)
2409 * Convert a VT_UI1 to a VT_UI8.
2411 * PARAMS
2412 * bIn [I] Source
2413 * pui64Out [O] Destination
2415 * RETURNS
2416 * S_OK.
2418 HRESULT WINAPI VarUI8FromUI1(BYTE bIn, ULONG64* pui64Out)
2420 return _VarUI8FromUI1(bIn, pui64Out);
2423 /************************************************************************
2424 * VarUI8FromI2 (OLEAUT32.430)
2426 * Convert a VT_I2 to a VT_UI8.
2428 * PARAMS
2429 * sIn [I] Source
2430 * pui64Out [O] Destination
2432 * RETURNS
2433 * S_OK.
2435 HRESULT WINAPI VarUI8FromI2(SHORT sIn, ULONG64* pui64Out)
2437 return _VarUI8FromI2(sIn, pui64Out);
2440 /************************************************************************
2441 * VarUI8FromR4 (OLEAUT32.431)
2443 * Convert a VT_R4 to a VT_UI8.
2445 * PARAMS
2446 * fltIn [I] Source
2447 * pui64Out [O] Destination
2449 * RETURNS
2450 * Success: S_OK.
2451 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2453 HRESULT WINAPI VarUI8FromR4(FLOAT fltIn, ULONG64* pui64Out)
2455 return VarUI8FromR8(fltIn, pui64Out);
2458 /************************************************************************
2459 * VarUI8FromR8 (OLEAUT32.432)
2461 * Convert a VT_R8 to a VT_UI8.
2463 * PARAMS
2464 * dblIn [I] Source
2465 * pui64Out [O] Destination
2467 * RETURNS
2468 * Success: S_OK.
2469 * Failure: E_INVALIDARG, if the source value is invalid
2470 * DISP_E_OVERFLOW, if the value will not fit in the destination
2472 * NOTES
2473 * See VarI8FromR8() for details concerning rounding.
2475 HRESULT WINAPI VarUI8FromR8(double dblIn, ULONG64* pui64Out)
2477 if (dblIn < -0.5 || dblIn > 1.844674407370955e19)
2478 return DISP_E_OVERFLOW;
2479 VARIANT_DutchRound(ULONG64, dblIn, *pui64Out);
2480 return S_OK;
2483 /************************************************************************
2484 * VarUI8FromCy (OLEAUT32.433)
2486 * Convert a VT_CY to a VT_UI8.
2488 * PARAMS
2489 * cyIn [I] Source
2490 * pui64Out [O] Destination
2492 * RETURNS
2493 * Success: S_OK.
2494 * Failure: E_INVALIDARG, if the source value is invalid
2495 * DISP_E_OVERFLOW, if the value will not fit in the destination
2497 * NOTES
2498 * Negative values >= -5000 will be converted to 0.
2500 HRESULT WINAPI VarUI8FromCy(CY cyIn, ULONG64* pui64Out)
2502 if (cyIn.int64 < 0)
2504 if (cyIn.int64 < -CY_HALF)
2505 return DISP_E_OVERFLOW;
2506 *pui64Out = 0;
2508 else
2510 *pui64Out = cyIn.int64 / CY_MULTIPLIER;
2512 cyIn.int64 -= *pui64Out * CY_MULTIPLIER; /* cyIn.s.Lo now holds fractional remainder */
2514 if (cyIn.s.Lo > CY_HALF || (cyIn.s.Lo == CY_HALF && (*pui64Out & 0x1)))
2515 (*pui64Out)++;
2517 return S_OK;
2520 /************************************************************************
2521 * VarUI8FromDate (OLEAUT32.434)
2523 * Convert a VT_DATE to a VT_UI8.
2525 * PARAMS
2526 * dateIn [I] Source
2527 * pui64Out [O] Destination
2529 * RETURNS
2530 * Success: S_OK.
2531 * Failure: E_INVALIDARG, if the source value is invalid
2532 * DISP_E_OVERFLOW, if the value will not fit in the destination
2533 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2535 HRESULT WINAPI VarUI8FromDate(DATE dateIn, ULONG64* pui64Out)
2537 return VarUI8FromR8(dateIn, pui64Out);
2540 /************************************************************************
2541 * VarUI8FromStr (OLEAUT32.435)
2543 * Convert a VT_BSTR to a VT_UI8.
2545 * PARAMS
2546 * strIn [I] Source
2547 * lcid [I] LCID for the conversion
2548 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
2549 * pui64Out [O] Destination
2551 * RETURNS
2552 * Success: S_OK.
2553 * Failure: E_INVALIDARG, if the source value is invalid
2554 * DISP_E_OVERFLOW, if the value will not fit in the destination
2555 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2557 HRESULT WINAPI VarUI8FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, ULONG64* pui64Out)
2559 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pui64Out, VT_UI8);
2562 /************************************************************************
2563 * VarUI8FromDisp (OLEAUT32.436)
2565 * Convert a VT_DISPATCH to a VT_UI8.
2567 * PARAMS
2568 * pdispIn [I] Source
2569 * lcid [I] LCID for conversion
2570 * pui64Out [O] Destination
2572 * RETURNS
2573 * Success: S_OK.
2574 * Failure: E_INVALIDARG, if the source value is invalid
2575 * DISP_E_OVERFLOW, if the value will not fit in the destination
2576 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2578 HRESULT WINAPI VarUI8FromDisp(IDispatch* pdispIn, LCID lcid, ULONG64* pui64Out)
2580 return VARIANT_FromDisp(pdispIn, lcid, pui64Out, VT_UI8, 0);
2583 /************************************************************************
2584 * VarUI8FromBool (OLEAUT32.437)
2586 * Convert a VT_BOOL to a VT_UI8.
2588 * PARAMS
2589 * boolIn [I] Source
2590 * pui64Out [O] Destination
2592 * RETURNS
2593 * Success: S_OK.
2594 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2596 HRESULT WINAPI VarUI8FromBool(VARIANT_BOOL boolIn, ULONG64* pui64Out)
2598 return VarI8FromI2(boolIn, (LONG64 *)pui64Out);
2600 /************************************************************************
2601 * VarUI8FromI1 (OLEAUT32.438)
2603 * Convert a VT_I1 to a VT_UI8.
2605 * PARAMS
2606 * cIn [I] Source
2607 * pui64Out [O] Destination
2609 * RETURNS
2610 * Success: S_OK.
2611 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
2613 HRESULT WINAPI VarUI8FromI1(signed char cIn, ULONG64* pui64Out)
2615 return _VarUI8FromI1(cIn, pui64Out);
2618 /************************************************************************
2619 * VarUI8FromUI2 (OLEAUT32.439)
2621 * Convert a VT_UI2 to a VT_UI8.
2623 * PARAMS
2624 * usIn [I] Source
2625 * pui64Out [O] Destination
2627 * RETURNS
2628 * S_OK.
2630 HRESULT WINAPI VarUI8FromUI2(USHORT usIn, ULONG64* pui64Out)
2632 return _VarUI8FromUI2(usIn, pui64Out);
2635 /************************************************************************
2636 * VarUI8FromUI4 (OLEAUT32.440)
2638 * Convert a VT_UI4 to a VT_UI8.
2640 * PARAMS
2641 * ulIn [I] Source
2642 * pui64Out [O] Destination
2644 * RETURNS
2645 * S_OK.
2647 HRESULT WINAPI VarUI8FromUI4(ULONG ulIn, ULONG64* pui64Out)
2649 return _VarUI8FromUI4(ulIn, pui64Out);
2652 /************************************************************************
2653 * VarUI8FromDec (OLEAUT32.441)
2655 * Convert a VT_DECIMAL to a VT_UI8.
2657 * PARAMS
2658 * pDecIn [I] Source
2659 * pui64Out [O] Destination
2661 * RETURNS
2662 * Success: S_OK.
2663 * Failure: E_INVALIDARG, if the source value is invalid
2664 * DISP_E_OVERFLOW, if the value will not fit in the destination
2666 * NOTES
2667 * Under native Win32, if the source value has a scale of 0, its sign is
2668 * ignored, i.e. this function takes the absolute value rather than fail
2669 * with DISP_E_OVERFLOW. This bug has been fixed in Wine's implementation
2670 * (use VarAbs() on pDecIn first if you really want this behaviour).
2672 HRESULT WINAPI VarUI8FromDec(DECIMAL *pdecIn, ULONG64* pui64Out)
2674 if (!DEC_SCALE(pdecIn))
2676 /* This decimal is just a 96 bit integer */
2677 if (DEC_SIGN(pdecIn) & ~DECIMAL_NEG)
2678 return E_INVALIDARG;
2680 if (DEC_HI32(pdecIn))
2681 return DISP_E_OVERFLOW;
2683 if (DEC_SIGN(pdecIn))
2685 WARN("Sign would be ignored under Win32!\n");
2686 return DISP_E_OVERFLOW;
2689 *pui64Out = DEC_LO64(pdecIn);
2690 return S_OK;
2692 else
2694 /* Decimal contains a floating point number */
2695 HRESULT hRet;
2696 double dbl;
2698 hRet = VarR8FromDec(pdecIn, &dbl);
2699 if (SUCCEEDED(hRet))
2700 hRet = VarUI8FromR8(dbl, pui64Out);
2701 return hRet;
2705 /* R4
2708 /************************************************************************
2709 * VarR4FromUI1 (OLEAUT32.68)
2711 * Convert a VT_UI1 to a VT_R4.
2713 * PARAMS
2714 * bIn [I] Source
2715 * pFltOut [O] Destination
2717 * RETURNS
2718 * S_OK.
2720 HRESULT WINAPI VarR4FromUI1(BYTE bIn, float *pFltOut)
2722 return _VarR4FromUI1(bIn, pFltOut);
2725 /************************************************************************
2726 * VarR4FromI2 (OLEAUT32.69)
2728 * Convert a VT_I2 to a VT_R4.
2730 * PARAMS
2731 * sIn [I] Source
2732 * pFltOut [O] Destination
2734 * RETURNS
2735 * S_OK.
2737 HRESULT WINAPI VarR4FromI2(SHORT sIn, float *pFltOut)
2739 return _VarR4FromI2(sIn, pFltOut);
2742 /************************************************************************
2743 * VarR4FromI4 (OLEAUT32.70)
2745 * Convert a VT_I4 to a VT_R4.
2747 * PARAMS
2748 * sIn [I] Source
2749 * pFltOut [O] Destination
2751 * RETURNS
2752 * S_OK.
2754 HRESULT WINAPI VarR4FromI4(LONG lIn, float *pFltOut)
2756 return _VarR4FromI4(lIn, pFltOut);
2759 /************************************************************************
2760 * VarR4FromR8 (OLEAUT32.71)
2762 * Convert a VT_R8 to a VT_R4.
2764 * PARAMS
2765 * dblIn [I] Source
2766 * pFltOut [O] Destination
2768 * RETURNS
2769 * Success: S_OK.
2770 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination.
2772 HRESULT WINAPI VarR4FromR8(double dblIn, float *pFltOut)
2774 double d = dblIn < 0.0 ? -dblIn : dblIn;
2775 if (d > R4_MAX) return DISP_E_OVERFLOW;
2776 *pFltOut = dblIn;
2777 return S_OK;
2780 /************************************************************************
2781 * VarR4FromCy (OLEAUT32.72)
2783 * Convert a VT_CY to a VT_R4.
2785 * PARAMS
2786 * cyIn [I] Source
2787 * pFltOut [O] Destination
2789 * RETURNS
2790 * S_OK.
2792 HRESULT WINAPI VarR4FromCy(CY cyIn, float *pFltOut)
2794 *pFltOut = (double)cyIn.int64 / CY_MULTIPLIER_F;
2795 return S_OK;
2798 /************************************************************************
2799 * VarR4FromDate (OLEAUT32.73)
2801 * Convert a VT_DATE to a VT_R4.
2803 * PARAMS
2804 * dateIn [I] Source
2805 * pFltOut [O] Destination
2807 * RETURNS
2808 * Success: S_OK.
2809 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination.
2811 HRESULT WINAPI VarR4FromDate(DATE dateIn, float *pFltOut)
2813 return VarR4FromR8(dateIn, pFltOut);
2816 /************************************************************************
2817 * VarR4FromStr (OLEAUT32.74)
2819 * Convert a VT_BSTR to a VT_R4.
2821 * PARAMS
2822 * strIn [I] Source
2823 * lcid [I] LCID for the conversion
2824 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
2825 * pFltOut [O] Destination
2827 * RETURNS
2828 * Success: S_OK.
2829 * Failure: E_INVALIDARG, if strIn or pFltOut is invalid.
2830 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2832 HRESULT WINAPI VarR4FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, float *pFltOut)
2834 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pFltOut, VT_R4);
2837 /************************************************************************
2838 * VarR4FromDisp (OLEAUT32.75)
2840 * Convert a VT_DISPATCH to a VT_R4.
2842 * PARAMS
2843 * pdispIn [I] Source
2844 * lcid [I] LCID for conversion
2845 * pFltOut [O] Destination
2847 * RETURNS
2848 * Success: S_OK.
2849 * Failure: E_INVALIDARG, if the source value is invalid
2850 * DISP_E_OVERFLOW, if the value will not fit in the destination
2851 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2853 HRESULT WINAPI VarR4FromDisp(IDispatch* pdispIn, LCID lcid, float *pFltOut)
2855 return VARIANT_FromDisp(pdispIn, lcid, pFltOut, VT_R4, 0);
2858 /************************************************************************
2859 * VarR4FromBool (OLEAUT32.76)
2861 * Convert a VT_BOOL to a VT_R4.
2863 * PARAMS
2864 * boolIn [I] Source
2865 * pFltOut [O] Destination
2867 * RETURNS
2868 * S_OK.
2870 HRESULT WINAPI VarR4FromBool(VARIANT_BOOL boolIn, float *pFltOut)
2872 return VarR4FromI2(boolIn, pFltOut);
2875 /************************************************************************
2876 * VarR4FromI1 (OLEAUT32.213)
2878 * Convert a VT_I1 to a VT_R4.
2880 * PARAMS
2881 * cIn [I] Source
2882 * pFltOut [O] Destination
2884 * RETURNS
2885 * Success: S_OK.
2886 * Failure: E_INVALIDARG, if the source value is invalid
2887 * DISP_E_OVERFLOW, if the value will not fit in the destination
2888 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2890 HRESULT WINAPI VarR4FromI1(signed char cIn, float *pFltOut)
2892 return _VarR4FromI1(cIn, pFltOut);
2895 /************************************************************************
2896 * VarR4FromUI2 (OLEAUT32.214)
2898 * Convert a VT_UI2 to a VT_R4.
2900 * PARAMS
2901 * usIn [I] Source
2902 * pFltOut [O] Destination
2904 * RETURNS
2905 * Success: S_OK.
2906 * Failure: E_INVALIDARG, if the source value is invalid
2907 * DISP_E_OVERFLOW, if the value will not fit in the destination
2908 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2910 HRESULT WINAPI VarR4FromUI2(USHORT usIn, float *pFltOut)
2912 return _VarR4FromUI2(usIn, pFltOut);
2915 /************************************************************************
2916 * VarR4FromUI4 (OLEAUT32.215)
2918 * Convert a VT_UI4 to a VT_R4.
2920 * PARAMS
2921 * ulIn [I] Source
2922 * pFltOut [O] Destination
2924 * RETURNS
2925 * Success: S_OK.
2926 * Failure: E_INVALIDARG, if the source value is invalid
2927 * DISP_E_OVERFLOW, if the value will not fit in the destination
2928 * DISP_E_TYPEMISMATCH, if the type cannot be converted
2930 HRESULT WINAPI VarR4FromUI4(ULONG ulIn, float *pFltOut)
2932 return _VarR4FromUI4(ulIn, pFltOut);
2935 /************************************************************************
2936 * VarR4FromDec (OLEAUT32.216)
2938 * Convert a VT_DECIMAL to a VT_R4.
2940 * PARAMS
2941 * pDecIn [I] Source
2942 * pFltOut [O] Destination
2944 * RETURNS
2945 * Success: S_OK.
2946 * Failure: E_INVALIDARG, if the source value is invalid.
2948 HRESULT WINAPI VarR4FromDec(DECIMAL* pDecIn, float *pFltOut)
2950 BYTE scale = DEC_SCALE(pDecIn);
2951 int divisor = 1;
2952 double highPart;
2954 if (scale > DEC_MAX_SCALE || DEC_SIGN(pDecIn) & ~DECIMAL_NEG)
2955 return E_INVALIDARG;
2957 while (scale--)
2958 divisor *= 10;
2960 if (DEC_SIGN(pDecIn))
2961 divisor = -divisor;
2963 if (DEC_HI32(pDecIn))
2965 highPart = (double)DEC_HI32(pDecIn) / (double)divisor;
2966 highPart *= 4294967296.0F;
2967 highPart *= 4294967296.0F;
2969 else
2970 highPart = 0.0;
2972 *pFltOut = (double)DEC_LO64(pDecIn) / (double)divisor + highPart;
2973 return S_OK;
2976 /************************************************************************
2977 * VarR4FromI8 (OLEAUT32.360)
2979 * Convert a VT_I8 to a VT_R4.
2981 * PARAMS
2982 * ullIn [I] Source
2983 * pFltOut [O] Destination
2985 * RETURNS
2986 * S_OK.
2988 HRESULT WINAPI VarR4FromI8(LONG64 llIn, float *pFltOut)
2990 return _VarR4FromI8(llIn, pFltOut);
2993 /************************************************************************
2994 * VarR4FromUI8 (OLEAUT32.361)
2996 * Convert a VT_UI8 to a VT_R4.
2998 * PARAMS
2999 * ullIn [I] Source
3000 * pFltOut [O] Destination
3002 * RETURNS
3003 * S_OK.
3005 HRESULT WINAPI VarR4FromUI8(ULONG64 ullIn, float *pFltOut)
3007 return _VarR4FromUI8(ullIn, pFltOut);
3010 /************************************************************************
3011 * VarR4CmpR8 (OLEAUT32.316)
3013 * Compare a VT_R4 to a VT_R8.
3015 * PARAMS
3016 * fltLeft [I] Source
3017 * dblRight [I] Value to compare
3019 * RETURNS
3020 * VARCMP_LT, VARCMP_EQ or VARCMP_GT indicating that fltLeft is less than,
3021 * equal to or greater than dblRight respectively.
3023 HRESULT WINAPI VarR4CmpR8(float fltLeft, double dblRight)
3025 if (fltLeft < dblRight)
3026 return VARCMP_LT;
3027 else if (fltLeft > dblRight)
3028 return VARCMP_GT;
3029 return VARCMP_EQ;
3032 /* R8
3035 /************************************************************************
3036 * VarR8FromUI1 (OLEAUT32.78)
3038 * Convert a VT_UI1 to a VT_R8.
3040 * PARAMS
3041 * bIn [I] Source
3042 * pDblOut [O] Destination
3044 * RETURNS
3045 * S_OK.
3047 HRESULT WINAPI VarR8FromUI1(BYTE bIn, double *pDblOut)
3049 return _VarR8FromUI1(bIn, pDblOut);
3052 /************************************************************************
3053 * VarR8FromI2 (OLEAUT32.79)
3055 * Convert a VT_I2 to a VT_R8.
3057 * PARAMS
3058 * sIn [I] Source
3059 * pDblOut [O] Destination
3061 * RETURNS
3062 * S_OK.
3064 HRESULT WINAPI VarR8FromI2(SHORT sIn, double *pDblOut)
3066 return _VarR8FromI2(sIn, pDblOut);
3069 /************************************************************************
3070 * VarR8FromI4 (OLEAUT32.80)
3072 * Convert a VT_I4 to a VT_R8.
3074 * PARAMS
3075 * sIn [I] Source
3076 * pDblOut [O] Destination
3078 * RETURNS
3079 * S_OK.
3081 HRESULT WINAPI VarR8FromI4(LONG lIn, double *pDblOut)
3083 return _VarR8FromI4(lIn, pDblOut);
3086 /************************************************************************
3087 * VarR8FromR4 (OLEAUT32.81)
3089 * Convert a VT_R4 to a VT_R8.
3091 * PARAMS
3092 * fltIn [I] Source
3093 * pDblOut [O] Destination
3095 * RETURNS
3096 * S_OK.
3098 HRESULT WINAPI VarR8FromR4(FLOAT fltIn, double *pDblOut)
3100 return _VarR8FromR4(fltIn, pDblOut);
3103 /************************************************************************
3104 * VarR8FromCy (OLEAUT32.82)
3106 * Convert a VT_CY to a VT_R8.
3108 * PARAMS
3109 * cyIn [I] Source
3110 * pDblOut [O] Destination
3112 * RETURNS
3113 * S_OK.
3115 HRESULT WINAPI VarR8FromCy(CY cyIn, double *pDblOut)
3117 return _VarR8FromCy(cyIn, pDblOut);
3120 /************************************************************************
3121 * VarR8FromDate (OLEAUT32.83)
3123 * Convert a VT_DATE to a VT_R8.
3125 * PARAMS
3126 * dateIn [I] Source
3127 * pDblOut [O] Destination
3129 * RETURNS
3130 * S_OK.
3132 HRESULT WINAPI VarR8FromDate(DATE dateIn, double *pDblOut)
3134 return _VarR8FromDate(dateIn, pDblOut);
3137 /************************************************************************
3138 * VarR8FromStr (OLEAUT32.84)
3140 * Convert a VT_BSTR to a VT_R8.
3142 * PARAMS
3143 * strIn [I] Source
3144 * lcid [I] LCID for the conversion
3145 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
3146 * pDblOut [O] Destination
3148 * RETURNS
3149 * Success: S_OK.
3150 * Failure: E_INVALIDARG, if strIn or pDblOut is invalid.
3151 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3153 HRESULT WINAPI VarR8FromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, double *pDblOut)
3155 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pDblOut, VT_R8);
3158 /************************************************************************
3159 * VarR8FromDisp (OLEAUT32.85)
3161 * Convert a VT_DISPATCH to a VT_R8.
3163 * PARAMS
3164 * pdispIn [I] Source
3165 * lcid [I] LCID for conversion
3166 * pDblOut [O] Destination
3168 * RETURNS
3169 * Success: S_OK.
3170 * Failure: E_INVALIDARG, if the source value is invalid
3171 * DISP_E_OVERFLOW, if the value will not fit in the destination
3172 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3174 HRESULT WINAPI VarR8FromDisp(IDispatch* pdispIn, LCID lcid, double *pDblOut)
3176 return VARIANT_FromDisp(pdispIn, lcid, pDblOut, VT_R8, 0);
3179 /************************************************************************
3180 * VarR8FromBool (OLEAUT32.86)
3182 * Convert a VT_BOOL to a VT_R8.
3184 * PARAMS
3185 * boolIn [I] Source
3186 * pDblOut [O] Destination
3188 * RETURNS
3189 * S_OK.
3191 HRESULT WINAPI VarR8FromBool(VARIANT_BOOL boolIn, double *pDblOut)
3193 return VarR8FromI2(boolIn, pDblOut);
3196 /************************************************************************
3197 * VarR8FromI1 (OLEAUT32.217)
3199 * Convert a VT_I1 to a VT_R8.
3201 * PARAMS
3202 * cIn [I] Source
3203 * pDblOut [O] Destination
3205 * RETURNS
3206 * Success: S_OK.
3207 * Failure: E_INVALIDARG, if the source value is invalid
3208 * DISP_E_OVERFLOW, if the value will not fit in the destination
3209 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3211 HRESULT WINAPI VarR8FromI1(signed char cIn, double *pDblOut)
3213 return _VarR8FromI1(cIn, pDblOut);
3216 /************************************************************************
3217 * VarR8FromUI2 (OLEAUT32.218)
3219 * Convert a VT_UI2 to a VT_R8.
3221 * PARAMS
3222 * usIn [I] Source
3223 * pDblOut [O] Destination
3225 * RETURNS
3226 * Success: S_OK.
3227 * Failure: E_INVALIDARG, if the source value is invalid
3228 * DISP_E_OVERFLOW, if the value will not fit in the destination
3229 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3231 HRESULT WINAPI VarR8FromUI2(USHORT usIn, double *pDblOut)
3233 return _VarR8FromUI2(usIn, pDblOut);
3236 /************************************************************************
3237 * VarR8FromUI4 (OLEAUT32.219)
3239 * Convert a VT_UI4 to a VT_R8.
3241 * PARAMS
3242 * ulIn [I] Source
3243 * pDblOut [O] Destination
3245 * RETURNS
3246 * Success: S_OK.
3247 * Failure: E_INVALIDARG, if the source value is invalid
3248 * DISP_E_OVERFLOW, if the value will not fit in the destination
3249 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3251 HRESULT WINAPI VarR8FromUI4(ULONG ulIn, double *pDblOut)
3253 return _VarR8FromUI4(ulIn, pDblOut);
3256 /************************************************************************
3257 * VarR8FromDec (OLEAUT32.220)
3259 * Convert a VT_DECIMAL to a VT_R8.
3261 * PARAMS
3262 * pDecIn [I] Source
3263 * pDblOut [O] Destination
3265 * RETURNS
3266 * Success: S_OK.
3267 * Failure: E_INVALIDARG, if the source value is invalid.
3269 HRESULT WINAPI VarR8FromDec(const DECIMAL* pDecIn, double *pDblOut)
3271 BYTE scale = DEC_SCALE(pDecIn);
3272 double divisor = 1.0, highPart;
3274 if (scale > DEC_MAX_SCALE || DEC_SIGN(pDecIn) & ~DECIMAL_NEG)
3275 return E_INVALIDARG;
3277 while (scale--)
3278 divisor *= 10;
3280 if (DEC_SIGN(pDecIn))
3281 divisor = -divisor;
3283 if (DEC_HI32(pDecIn))
3285 highPart = (double)DEC_HI32(pDecIn) / divisor;
3286 highPart *= 4294967296.0F;
3287 highPart *= 4294967296.0F;
3289 else
3290 highPart = 0.0;
3292 *pDblOut = (double)DEC_LO64(pDecIn) / divisor + highPart;
3293 return S_OK;
3296 /************************************************************************
3297 * VarR8FromI8 (OLEAUT32.362)
3299 * Convert a VT_I8 to a VT_R8.
3301 * PARAMS
3302 * ullIn [I] Source
3303 * pDblOut [O] Destination
3305 * RETURNS
3306 * S_OK.
3308 HRESULT WINAPI VarR8FromI8(LONG64 llIn, double *pDblOut)
3310 return _VarR8FromI8(llIn, pDblOut);
3313 /************************************************************************
3314 * VarR8FromUI8 (OLEAUT32.363)
3316 * Convert a VT_UI8 to a VT_R8.
3318 * PARAMS
3319 * ullIn [I] Source
3320 * pDblOut [O] Destination
3322 * RETURNS
3323 * S_OK.
3325 HRESULT WINAPI VarR8FromUI8(ULONG64 ullIn, double *pDblOut)
3327 return _VarR8FromUI8(ullIn, pDblOut);
3330 /************************************************************************
3331 * VarR8Pow (OLEAUT32.315)
3333 * Raise a VT_R8 to a power.
3335 * PARAMS
3336 * dblLeft [I] Source
3337 * dblPow [I] Power to raise dblLeft by
3338 * pDblOut [O] Destination
3340 * RETURNS
3341 * S_OK. pDblOut contains dblLeft to the power of dblRight.
3343 HRESULT WINAPI VarR8Pow(double dblLeft, double dblPow, double *pDblOut)
3345 *pDblOut = pow(dblLeft, dblPow);
3346 return S_OK;
3349 /************************************************************************
3350 * VarR8Round (OLEAUT32.317)
3352 * Round a VT_R8 to a given number of decimal points.
3354 * PARAMS
3355 * dblIn [I] Source
3356 * nDig [I] Number of decimal points to round to
3357 * pDblOut [O] Destination for rounded number
3359 * RETURNS
3360 * Success: S_OK. pDblOut is rounded to nDig digits.
3361 * Failure: E_INVALIDARG, if cDecimals is less than 0.
3363 * NOTES
3364 * The native version of this function rounds using the internal
3365 * binary representation of the number. Wine uses the dutch rounding
3366 * convention, so therefore small differences can occur in the value returned.
3367 * MSDN says that you should use your own rounding function if you want
3368 * rounding to be predictable in your application.
3370 HRESULT WINAPI VarR8Round(double dblIn, int nDig, double *pDblOut)
3372 double scale, whole, fract;
3374 if (nDig < 0)
3375 return E_INVALIDARG;
3377 scale = pow(10.0, nDig);
3379 dblIn *= scale;
3380 whole = dblIn < 0 ? ceil(dblIn) : floor(dblIn);
3381 fract = dblIn - whole;
3383 if (fract > 0.5)
3384 dblIn = whole + 1.0;
3385 else if (fract == 0.5)
3386 dblIn = whole + fmod(whole, 2.0);
3387 else if (fract >= 0.0)
3388 dblIn = whole;
3389 else if (fract == -0.5)
3390 dblIn = whole - fmod(whole, 2.0);
3391 else if (fract > -0.5)
3392 dblIn = whole;
3393 else
3394 dblIn = whole - 1.0;
3396 *pDblOut = dblIn / scale;
3397 return S_OK;
3400 /* CY
3403 /* Powers of 10 from 0..4 D.P. */
3404 static const int CY_Divisors[5] = { CY_MULTIPLIER/10000, CY_MULTIPLIER/1000,
3405 CY_MULTIPLIER/100, CY_MULTIPLIER/10, CY_MULTIPLIER };
3407 /************************************************************************
3408 * VarCyFromUI1 (OLEAUT32.98)
3410 * Convert a VT_UI1 to a VT_CY.
3412 * PARAMS
3413 * bIn [I] Source
3414 * pCyOut [O] Destination
3416 * RETURNS
3417 * Success: S_OK.
3418 * Failure: E_INVALIDARG, if the source value is invalid
3419 * DISP_E_OVERFLOW, if the value will not fit in the destination
3420 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3422 HRESULT WINAPI VarCyFromUI1(BYTE bIn, CY* pCyOut)
3424 pCyOut->int64 = (ULONG64)bIn * CY_MULTIPLIER;
3425 return S_OK;
3428 /************************************************************************
3429 * VarCyFromI2 (OLEAUT32.99)
3431 * Convert a VT_I2 to a VT_CY.
3433 * PARAMS
3434 * sIn [I] Source
3435 * pCyOut [O] Destination
3437 * RETURNS
3438 * Success: S_OK.
3439 * Failure: E_INVALIDARG, if the source value is invalid
3440 * DISP_E_OVERFLOW, if the value will not fit in the destination
3441 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3443 HRESULT WINAPI VarCyFromI2(SHORT sIn, CY* pCyOut)
3445 pCyOut->int64 = (LONG64)sIn * CY_MULTIPLIER;
3446 return S_OK;
3449 /************************************************************************
3450 * VarCyFromI4 (OLEAUT32.100)
3452 * Convert a VT_I4 to a VT_CY.
3454 * PARAMS
3455 * sIn [I] Source
3456 * pCyOut [O] Destination
3458 * RETURNS
3459 * Success: S_OK.
3460 * Failure: E_INVALIDARG, if the source value is invalid
3461 * DISP_E_OVERFLOW, if the value will not fit in the destination
3462 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3464 HRESULT WINAPI VarCyFromI4(LONG lIn, CY* pCyOut)
3466 pCyOut->int64 = (LONG64)lIn * CY_MULTIPLIER;
3467 return S_OK;
3470 /************************************************************************
3471 * VarCyFromR4 (OLEAUT32.101)
3473 * Convert a VT_R4 to a VT_CY.
3475 * PARAMS
3476 * fltIn [I] Source
3477 * pCyOut [O] Destination
3479 * RETURNS
3480 * Success: S_OK.
3481 * Failure: E_INVALIDARG, if the source value is invalid
3482 * DISP_E_OVERFLOW, if the value will not fit in the destination
3483 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3485 HRESULT WINAPI VarCyFromR4(FLOAT fltIn, CY* pCyOut)
3487 return VarCyFromR8(fltIn, pCyOut);
3490 /************************************************************************
3491 * VarCyFromR8 (OLEAUT32.102)
3493 * Convert a VT_R8 to a VT_CY.
3495 * PARAMS
3496 * dblIn [I] Source
3497 * pCyOut [O] Destination
3499 * RETURNS
3500 * Success: S_OK.
3501 * Failure: E_INVALIDARG, if the source value is invalid
3502 * DISP_E_OVERFLOW, if the value will not fit in the destination
3503 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3505 HRESULT WINAPI VarCyFromR8(double dblIn, CY* pCyOut)
3507 #if defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))
3508 /* This code gives identical results to Win32 on Intel.
3509 * Here we use fp exceptions to catch overflows when storing the value.
3511 static const unsigned short r8_fpcontrol = 0x137f;
3512 static const double r8_multiplier = CY_MULTIPLIER_F;
3513 unsigned short old_fpcontrol, result_fpstatus;
3515 /* Clear exceptions, save the old fp state and load the new state */
3516 __asm__ __volatile__( "fnclex" );
3517 __asm__ __volatile__( "fstcw %0" : "=m" (old_fpcontrol) : );
3518 __asm__ __volatile__( "fldcw %0" : : "m" (r8_fpcontrol) );
3519 /* Perform the conversion. */
3520 __asm__ __volatile__( "fldl %0" : : "m" (dblIn) );
3521 __asm__ __volatile__( "fmull %0" : : "m" (r8_multiplier) );
3522 __asm__ __volatile__( "fistpll %0" : : "m" (*pCyOut) );
3523 /* Save the resulting fp state, load the old state and clear exceptions */
3524 __asm__ __volatile__( "fstsw %0" : "=m" (result_fpstatus) : );
3525 __asm__ __volatile__( "fnclex" );
3526 __asm__ __volatile__( "fldcw %0" : : "m" (old_fpcontrol) );
3528 if (result_fpstatus & 0x9) /* Overflow | Invalid */
3529 return DISP_E_OVERFLOW;
3530 #else
3531 /* This version produces slightly different results for boundary cases */
3532 if (dblIn < -922337203685477.5807 || dblIn >= 922337203685477.5807)
3533 return DISP_E_OVERFLOW;
3534 dblIn *= CY_MULTIPLIER_F;
3535 VARIANT_DutchRound(LONG64, dblIn, pCyOut->int64);
3536 #endif
3537 return S_OK;
3540 /************************************************************************
3541 * VarCyFromDate (OLEAUT32.103)
3543 * Convert a VT_DATE to a VT_CY.
3545 * PARAMS
3546 * dateIn [I] Source
3547 * pCyOut [O] Destination
3549 * RETURNS
3550 * Success: S_OK.
3551 * Failure: E_INVALIDARG, if the source value is invalid
3552 * DISP_E_OVERFLOW, if the value will not fit in the destination
3553 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3555 HRESULT WINAPI VarCyFromDate(DATE dateIn, CY* pCyOut)
3557 return VarCyFromR8(dateIn, pCyOut);
3560 /************************************************************************
3561 * VarCyFromStr (OLEAUT32.104)
3563 * Convert a VT_BSTR to a VT_CY.
3565 * PARAMS
3566 * strIn [I] Source
3567 * lcid [I] LCID for the conversion
3568 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
3569 * pCyOut [O] Destination
3571 * RETURNS
3572 * Success: S_OK.
3573 * Failure: E_INVALIDARG, if the source value is invalid
3574 * DISP_E_OVERFLOW, if the value will not fit in the destination
3575 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3577 HRESULT WINAPI VarCyFromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, CY* pCyOut)
3579 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pCyOut, VT_CY);
3582 /************************************************************************
3583 * VarCyFromDisp (OLEAUT32.105)
3585 * Convert a VT_DISPATCH to a VT_CY.
3587 * PARAMS
3588 * pdispIn [I] Source
3589 * lcid [I] LCID for conversion
3590 * pCyOut [O] Destination
3592 * RETURNS
3593 * Success: S_OK.
3594 * Failure: E_INVALIDARG, if the source value is invalid
3595 * DISP_E_OVERFLOW, if the value will not fit in the destination
3596 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3598 HRESULT WINAPI VarCyFromDisp(IDispatch* pdispIn, LCID lcid, CY* pCyOut)
3600 return VARIANT_FromDisp(pdispIn, lcid, pCyOut, VT_CY, 0);
3603 /************************************************************************
3604 * VarCyFromBool (OLEAUT32.106)
3606 * Convert a VT_BOOL to a VT_CY.
3608 * PARAMS
3609 * boolIn [I] Source
3610 * pCyOut [O] Destination
3612 * RETURNS
3613 * Success: S_OK.
3614 * Failure: E_INVALIDARG, if the source value is invalid
3615 * DISP_E_OVERFLOW, if the value will not fit in the destination
3616 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3618 * NOTES
3619 * While the sign of the boolean is stored in the currency, the value is
3620 * converted to either 0 or 1.
3622 HRESULT WINAPI VarCyFromBool(VARIANT_BOOL boolIn, CY* pCyOut)
3624 pCyOut->int64 = (LONG64)boolIn * CY_MULTIPLIER;
3625 return S_OK;
3628 /************************************************************************
3629 * VarCyFromI1 (OLEAUT32.225)
3631 * Convert a VT_I1 to a VT_CY.
3633 * PARAMS
3634 * cIn [I] Source
3635 * pCyOut [O] Destination
3637 * RETURNS
3638 * Success: S_OK.
3639 * Failure: E_INVALIDARG, if the source value is invalid
3640 * DISP_E_OVERFLOW, if the value will not fit in the destination
3641 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3643 HRESULT WINAPI VarCyFromI1(signed char cIn, CY* pCyOut)
3645 pCyOut->int64 = (LONG64)cIn * CY_MULTIPLIER;
3646 return S_OK;
3649 /************************************************************************
3650 * VarCyFromUI2 (OLEAUT32.226)
3652 * Convert a VT_UI2 to a VT_CY.
3654 * PARAMS
3655 * usIn [I] Source
3656 * pCyOut [O] Destination
3658 * RETURNS
3659 * Success: S_OK.
3660 * Failure: E_INVALIDARG, if the source value is invalid
3661 * DISP_E_OVERFLOW, if the value will not fit in the destination
3662 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3664 HRESULT WINAPI VarCyFromUI2(USHORT usIn, CY* pCyOut)
3666 pCyOut->int64 = (ULONG64)usIn * CY_MULTIPLIER;
3667 return S_OK;
3670 /************************************************************************
3671 * VarCyFromUI4 (OLEAUT32.227)
3673 * Convert a VT_UI4 to a VT_CY.
3675 * PARAMS
3676 * ulIn [I] Source
3677 * pCyOut [O] Destination
3679 * RETURNS
3680 * Success: S_OK.
3681 * Failure: E_INVALIDARG, if the source value is invalid
3682 * DISP_E_OVERFLOW, if the value will not fit in the destination
3683 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3685 HRESULT WINAPI VarCyFromUI4(ULONG ulIn, CY* pCyOut)
3687 pCyOut->int64 = (ULONG64)ulIn * CY_MULTIPLIER;
3688 return S_OK;
3691 /************************************************************************
3692 * VarCyFromDec (OLEAUT32.228)
3694 * Convert a VT_DECIMAL to a VT_CY.
3696 * PARAMS
3697 * pdecIn [I] Source
3698 * pCyOut [O] Destination
3700 * RETURNS
3701 * Success: S_OK.
3702 * Failure: E_INVALIDARG, if the source value is invalid
3703 * DISP_E_OVERFLOW, if the value will not fit in the destination
3704 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3706 HRESULT WINAPI VarCyFromDec(DECIMAL* pdecIn, CY* pCyOut)
3708 DECIMAL rounded;
3709 HRESULT hRet;
3711 hRet = VarDecRound(pdecIn, 4, &rounded);
3713 if (SUCCEEDED(hRet))
3715 double d;
3717 if (DEC_HI32(&rounded))
3718 return DISP_E_OVERFLOW;
3720 /* Note: Without the casts this promotes to int64 which loses precision */
3721 d = (double)DEC_LO64(&rounded) / (double)CY_Divisors[DEC_SCALE(&rounded)];
3722 if (DEC_SIGN(&rounded))
3723 d = -d;
3724 return VarCyFromR8(d, pCyOut);
3726 return hRet;
3729 /************************************************************************
3730 * VarCyFromI8 (OLEAUT32.366)
3732 * Convert a VT_I8 to a VT_CY.
3734 * PARAMS
3735 * ullIn [I] Source
3736 * pCyOut [O] Destination
3738 * RETURNS
3739 * Success: S_OK.
3740 * Failure: E_INVALIDARG, if the source value is invalid
3741 * DISP_E_OVERFLOW, if the value will not fit in the destination
3742 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3744 HRESULT WINAPI VarCyFromI8(LONG64 llIn, CY* pCyOut)
3746 if (llIn <= (I8_MIN/CY_MULTIPLIER) || llIn >= (I8_MAX/CY_MULTIPLIER)) return DISP_E_OVERFLOW;
3747 pCyOut->int64 = llIn * CY_MULTIPLIER;
3748 return S_OK;
3751 /************************************************************************
3752 * VarCyFromUI8 (OLEAUT32.375)
3754 * Convert a VT_UI8 to a VT_CY.
3756 * PARAMS
3757 * ullIn [I] Source
3758 * pCyOut [O] Destination
3760 * RETURNS
3761 * Success: S_OK.
3762 * Failure: E_INVALIDARG, if the source value is invalid
3763 * DISP_E_OVERFLOW, if the value will not fit in the destination
3764 * DISP_E_TYPEMISMATCH, if the type cannot be converted
3766 HRESULT WINAPI VarCyFromUI8(ULONG64 ullIn, CY* pCyOut)
3768 if (ullIn > (I8_MAX/CY_MULTIPLIER)) return DISP_E_OVERFLOW;
3769 pCyOut->int64 = ullIn * CY_MULTIPLIER;
3770 return S_OK;
3773 /************************************************************************
3774 * VarCyAdd (OLEAUT32.299)
3776 * Add one CY to another.
3778 * PARAMS
3779 * cyLeft [I] Source
3780 * cyRight [I] Value to add
3781 * pCyOut [O] Destination
3783 * RETURNS
3784 * Success: S_OK.
3785 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3787 HRESULT WINAPI VarCyAdd(const CY cyLeft, const CY cyRight, CY* pCyOut)
3789 double l,r;
3790 _VarR8FromCy(cyLeft, &l);
3791 _VarR8FromCy(cyRight, &r);
3792 l = l + r;
3793 return VarCyFromR8(l, pCyOut);
3796 /************************************************************************
3797 * VarCyMul (OLEAUT32.303)
3799 * Multiply one CY by another.
3801 * PARAMS
3802 * cyLeft [I] Source
3803 * cyRight [I] Value to multiply by
3804 * pCyOut [O] Destination
3806 * RETURNS
3807 * Success: S_OK.
3808 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3810 HRESULT WINAPI VarCyMul(const CY cyLeft, const CY cyRight, CY* pCyOut)
3812 double l,r;
3813 _VarR8FromCy(cyLeft, &l);
3814 _VarR8FromCy(cyRight, &r);
3815 l = l * r;
3816 return VarCyFromR8(l, pCyOut);
3819 /************************************************************************
3820 * VarCyMulI4 (OLEAUT32.304)
3822 * Multiply one CY by a VT_I4.
3824 * PARAMS
3825 * cyLeft [I] Source
3826 * lRight [I] Value to multiply by
3827 * pCyOut [O] Destination
3829 * RETURNS
3830 * Success: S_OK.
3831 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3833 HRESULT WINAPI VarCyMulI4(const CY cyLeft, LONG lRight, CY* pCyOut)
3835 double d;
3837 _VarR8FromCy(cyLeft, &d);
3838 d = d * lRight;
3839 return VarCyFromR8(d, pCyOut);
3842 /************************************************************************
3843 * VarCySub (OLEAUT32.305)
3845 * Subtract one CY from another.
3847 * PARAMS
3848 * cyLeft [I] Source
3849 * cyRight [I] Value to subtract
3850 * pCyOut [O] Destination
3852 * RETURNS
3853 * Success: S_OK.
3854 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3856 HRESULT WINAPI VarCySub(const CY cyLeft, const CY cyRight, CY* pCyOut)
3858 double l,r;
3859 _VarR8FromCy(cyLeft, &l);
3860 _VarR8FromCy(cyRight, &r);
3861 l = l - r;
3862 return VarCyFromR8(l, pCyOut);
3865 /************************************************************************
3866 * VarCyAbs (OLEAUT32.306)
3868 * Convert a VT_CY into its absolute value.
3870 * PARAMS
3871 * cyIn [I] Source
3872 * pCyOut [O] Destination
3874 * RETURNS
3875 * Success: S_OK. pCyOut contains the absolute value.
3876 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3878 HRESULT WINAPI VarCyAbs(const CY cyIn, CY* pCyOut)
3880 if (cyIn.s.Hi == (int)0x80000000 && !cyIn.s.Lo)
3881 return DISP_E_OVERFLOW;
3883 pCyOut->int64 = cyIn.int64 < 0 ? -cyIn.int64 : cyIn.int64;
3884 return S_OK;
3887 /************************************************************************
3888 * VarCyFix (OLEAUT32.307)
3890 * Return the integer part of a VT_CY.
3892 * PARAMS
3893 * cyIn [I] Source
3894 * pCyOut [O] Destination
3896 * RETURNS
3897 * Success: S_OK.
3898 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3900 * NOTES
3901 * - The difference between this function and VarCyInt() is that VarCyInt() rounds
3902 * negative numbers away from 0, while this function rounds them towards zero.
3904 HRESULT WINAPI VarCyFix(const CY cyIn, CY* pCyOut)
3906 pCyOut->int64 = cyIn.int64 / CY_MULTIPLIER;
3907 pCyOut->int64 *= CY_MULTIPLIER;
3908 return S_OK;
3911 /************************************************************************
3912 * VarCyInt (OLEAUT32.308)
3914 * Return the integer part of a VT_CY.
3916 * PARAMS
3917 * cyIn [I] Source
3918 * pCyOut [O] Destination
3920 * RETURNS
3921 * Success: S_OK.
3922 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3924 * NOTES
3925 * - The difference between this function and VarCyFix() is that VarCyFix() rounds
3926 * negative numbers towards 0, while this function rounds them away from zero.
3928 HRESULT WINAPI VarCyInt(const CY cyIn, CY* pCyOut)
3930 pCyOut->int64 = cyIn.int64 / CY_MULTIPLIER;
3931 pCyOut->int64 *= CY_MULTIPLIER;
3933 if (cyIn.int64 < 0 && cyIn.int64 % CY_MULTIPLIER != 0)
3935 pCyOut->int64 -= CY_MULTIPLIER;
3937 return S_OK;
3940 /************************************************************************
3941 * VarCyNeg (OLEAUT32.309)
3943 * Change the sign of a VT_CY.
3945 * PARAMS
3946 * cyIn [I] Source
3947 * pCyOut [O] Destination
3949 * RETURNS
3950 * Success: S_OK.
3951 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
3953 HRESULT WINAPI VarCyNeg(const CY cyIn, CY* pCyOut)
3955 if (cyIn.s.Hi == (int)0x80000000 && !cyIn.s.Lo)
3956 return DISP_E_OVERFLOW;
3958 pCyOut->int64 = -cyIn.int64;
3959 return S_OK;
3962 /************************************************************************
3963 * VarCyRound (OLEAUT32.310)
3965 * Change the precision of a VT_CY.
3967 * PARAMS
3968 * cyIn [I] Source
3969 * cDecimals [I] New number of decimals to keep
3970 * pCyOut [O] Destination
3972 * RETURNS
3973 * Success: S_OK.
3974 * Failure: E_INVALIDARG, if cDecimals is less than 0.
3976 HRESULT WINAPI VarCyRound(const CY cyIn, int cDecimals, CY* pCyOut)
3978 if (cDecimals < 0)
3979 return E_INVALIDARG;
3981 if (cDecimals > 3)
3983 /* Rounding to more precision than we have */
3984 *pCyOut = cyIn;
3985 return S_OK;
3987 else
3989 double d, div = CY_Divisors[cDecimals];
3991 _VarR8FromCy(cyIn, &d);
3992 d = d * div;
3993 VARIANT_DutchRound(LONGLONG, d, pCyOut->int64);
3994 d = (double)pCyOut->int64 / div * CY_MULTIPLIER_F;
3995 VARIANT_DutchRound(LONGLONG, d, pCyOut->int64);
3996 return S_OK;
4000 /************************************************************************
4001 * VarCyCmp (OLEAUT32.311)
4003 * Compare two VT_CY values.
4005 * PARAMS
4006 * cyLeft [I] Source
4007 * cyRight [I] Value to compare
4009 * RETURNS
4010 * Success: VARCMP_LT, VARCMP_EQ or VARCMP_GT indicating that the value to
4011 * compare is less, equal or greater than source respectively.
4012 * Failure: DISP_E_OVERFLOW, if overflow occurs during the comparison
4014 HRESULT WINAPI VarCyCmp(const CY cyLeft, const CY cyRight)
4016 HRESULT hRet;
4017 CY result;
4019 /* Subtract right from left, and compare the result to 0 */
4020 hRet = VarCySub(cyLeft, cyRight, &result);
4022 if (SUCCEEDED(hRet))
4024 if (result.int64 < 0)
4025 hRet = (HRESULT)VARCMP_LT;
4026 else if (result.int64 > 0)
4027 hRet = (HRESULT)VARCMP_GT;
4028 else
4029 hRet = (HRESULT)VARCMP_EQ;
4031 return hRet;
4034 /************************************************************************
4035 * VarCyCmpR8 (OLEAUT32.312)
4037 * Compare a VT_CY to a double
4039 * PARAMS
4040 * cyLeft [I] Currency Source
4041 * dblRight [I] double to compare to cyLeft
4043 * RETURNS
4044 * Success: VARCMP_LT, VARCMP_EQ or VARCMP_GT indicating that dblRight is
4045 * less than, equal to or greater than cyLeft respectively.
4046 * Failure: DISP_E_OVERFLOW, if overflow occurs during the comparison
4048 HRESULT WINAPI VarCyCmpR8(const CY cyLeft, double dblRight)
4050 HRESULT hRet;
4051 CY cyRight;
4053 hRet = VarCyFromR8(dblRight, &cyRight);
4055 if (SUCCEEDED(hRet))
4056 hRet = VarCyCmp(cyLeft, cyRight);
4058 return hRet;
4061 /************************************************************************
4062 * VarCyMulI8 (OLEAUT32.329)
4064 * Multiply a VT_CY by a VT_I8.
4066 * PARAMS
4067 * cyLeft [I] Source
4068 * llRight [I] Value to multiply by
4069 * pCyOut [O] Destination
4071 * RETURNS
4072 * Success: S_OK.
4073 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
4075 HRESULT WINAPI VarCyMulI8(const CY cyLeft, LONG64 llRight, CY* pCyOut)
4077 double d;
4079 _VarR8FromCy(cyLeft, &d);
4080 d = d * (double)llRight;
4081 return VarCyFromR8(d, pCyOut);
4084 /* DECIMAL
4087 /************************************************************************
4088 * VarDecFromUI1 (OLEAUT32.190)
4090 * Convert a VT_UI1 to a DECIMAL.
4092 * PARAMS
4093 * bIn [I] Source
4094 * pDecOut [O] Destination
4096 * RETURNS
4097 * S_OK.
4099 HRESULT WINAPI VarDecFromUI1(BYTE bIn, DECIMAL* pDecOut)
4101 return VarDecFromUI4(bIn, pDecOut);
4104 /************************************************************************
4105 * VarDecFromI2 (OLEAUT32.191)
4107 * Convert a VT_I2 to a DECIMAL.
4109 * PARAMS
4110 * sIn [I] Source
4111 * pDecOut [O] Destination
4113 * RETURNS
4114 * S_OK.
4116 HRESULT WINAPI VarDecFromI2(SHORT sIn, DECIMAL* pDecOut)
4118 return VarDecFromI4(sIn, pDecOut);
4121 /************************************************************************
4122 * VarDecFromI4 (OLEAUT32.192)
4124 * Convert a VT_I4 to a DECIMAL.
4126 * PARAMS
4127 * sIn [I] Source
4128 * pDecOut [O] Destination
4130 * RETURNS
4131 * S_OK.
4133 HRESULT WINAPI VarDecFromI4(LONG lIn, DECIMAL* pDecOut)
4135 DEC_HI32(pDecOut) = 0;
4136 DEC_MID32(pDecOut) = 0;
4138 if (lIn < 0)
4140 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_NEG,0);
4141 DEC_LO32(pDecOut) = -lIn;
4143 else
4145 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_POS,0);
4146 DEC_LO32(pDecOut) = lIn;
4148 return S_OK;
4151 #define LOCALE_EN_US (MAKELCID(MAKELANGID(LANG_ENGLISH,SUBLANG_ENGLISH_US),SORT_DEFAULT))
4153 /* internal representation of the value stored in a DECIMAL. The bytes are
4154 stored from LSB at index 0 to MSB at index 11
4156 typedef struct DECIMAL_internal
4158 DWORD bitsnum[3]; /* 96 significant bits, unsigned */
4159 unsigned char scale; /* number scaled * 10 ^ -(scale) */
4160 unsigned int sign : 1; /* 0 - positive, 1 - negative */
4161 } VARIANT_DI;
4163 static HRESULT VARIANT_DI_FromR4(float source, VARIANT_DI * dest);
4164 static HRESULT VARIANT_DI_FromR8(double source, VARIANT_DI * dest);
4165 static void VARIANT_DIFromDec(const DECIMAL * from, VARIANT_DI * to);
4166 static void VARIANT_DecFromDI(const VARIANT_DI * from, DECIMAL * to);
4168 /************************************************************************
4169 * VarDecFromR4 (OLEAUT32.193)
4171 * Convert a VT_R4 to a DECIMAL.
4173 * PARAMS
4174 * fltIn [I] Source
4175 * pDecOut [O] Destination
4177 * RETURNS
4178 * S_OK.
4180 HRESULT WINAPI VarDecFromR4(FLOAT fltIn, DECIMAL* pDecOut)
4182 VARIANT_DI di;
4183 HRESULT hres;
4185 hres = VARIANT_DI_FromR4(fltIn, &di);
4186 if (hres == S_OK) VARIANT_DecFromDI(&di, pDecOut);
4187 return hres;
4190 /************************************************************************
4191 * VarDecFromR8 (OLEAUT32.194)
4193 * Convert a VT_R8 to a DECIMAL.
4195 * PARAMS
4196 * dblIn [I] Source
4197 * pDecOut [O] Destination
4199 * RETURNS
4200 * S_OK.
4202 HRESULT WINAPI VarDecFromR8(double dblIn, DECIMAL* pDecOut)
4204 VARIANT_DI di;
4205 HRESULT hres;
4207 hres = VARIANT_DI_FromR8(dblIn, &di);
4208 if (hres == S_OK) VARIANT_DecFromDI(&di, pDecOut);
4209 return hres;
4212 /************************************************************************
4213 * VarDecFromDate (OLEAUT32.195)
4215 * Convert a VT_DATE to a DECIMAL.
4217 * PARAMS
4218 * dateIn [I] Source
4219 * pDecOut [O] Destination
4221 * RETURNS
4222 * S_OK.
4224 HRESULT WINAPI VarDecFromDate(DATE dateIn, DECIMAL* pDecOut)
4226 return VarDecFromR8(dateIn, pDecOut);
4229 /************************************************************************
4230 * VarDecFromCy (OLEAUT32.196)
4232 * Convert a VT_CY to a DECIMAL.
4234 * PARAMS
4235 * cyIn [I] Source
4236 * pDecOut [O] Destination
4238 * RETURNS
4239 * S_OK.
4241 HRESULT WINAPI VarDecFromCy(CY cyIn, DECIMAL* pDecOut)
4243 DEC_HI32(pDecOut) = 0;
4245 /* Note: This assumes 2s complement integer representation */
4246 if (cyIn.s.Hi & 0x80000000)
4248 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_NEG,4);
4249 DEC_LO64(pDecOut) = -cyIn.int64;
4251 else
4253 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_POS,4);
4254 DEC_MID32(pDecOut) = cyIn.s.Hi;
4255 DEC_LO32(pDecOut) = cyIn.s.Lo;
4257 return S_OK;
4260 /************************************************************************
4261 * VarDecFromStr (OLEAUT32.197)
4263 * Convert a VT_BSTR to a DECIMAL.
4265 * PARAMS
4266 * strIn [I] Source
4267 * lcid [I] LCID for the conversion
4268 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
4269 * pDecOut [O] Destination
4271 * RETURNS
4272 * Success: S_OK.
4273 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
4275 HRESULT WINAPI VarDecFromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, DECIMAL* pDecOut)
4277 return VARIANT_NumberFromBstr(strIn, lcid, dwFlags, pDecOut, VT_DECIMAL);
4280 /************************************************************************
4281 * VarDecFromDisp (OLEAUT32.198)
4283 * Convert a VT_DISPATCH to a DECIMAL.
4285 * PARAMS
4286 * pdispIn [I] Source
4287 * lcid [I] LCID for conversion
4288 * pDecOut [O] Destination
4290 * RETURNS
4291 * Success: S_OK.
4292 * Failure: DISP_E_TYPEMISMATCH, if the type cannot be converted
4294 HRESULT WINAPI VarDecFromDisp(IDispatch* pdispIn, LCID lcid, DECIMAL* pDecOut)
4296 return VARIANT_FromDisp(pdispIn, lcid, pDecOut, VT_DECIMAL, 0);
4299 /************************************************************************
4300 * VarDecFromBool (OLEAUT32.199)
4302 * Convert a VT_BOOL to a DECIMAL.
4304 * PARAMS
4305 * bIn [I] Source
4306 * pDecOut [O] Destination
4308 * RETURNS
4309 * S_OK.
4311 * NOTES
4312 * The value is converted to either 0 (if bIn is FALSE) or -1 (TRUE).
4314 HRESULT WINAPI VarDecFromBool(VARIANT_BOOL bIn, DECIMAL* pDecOut)
4316 DEC_HI32(pDecOut) = 0;
4317 DEC_MID32(pDecOut) = 0;
4318 if (bIn)
4320 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_NEG,0);
4321 DEC_LO32(pDecOut) = 1;
4323 else
4325 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_POS,0);
4326 DEC_LO32(pDecOut) = 0;
4328 return S_OK;
4331 /************************************************************************
4332 * VarDecFromI1 (OLEAUT32.241)
4334 * Convert a VT_I1 to a DECIMAL.
4336 * PARAMS
4337 * cIn [I] Source
4338 * pDecOut [O] Destination
4340 * RETURNS
4341 * S_OK.
4343 HRESULT WINAPI VarDecFromI1(signed char cIn, DECIMAL* pDecOut)
4345 return VarDecFromI4(cIn, pDecOut);
4348 /************************************************************************
4349 * VarDecFromUI2 (OLEAUT32.242)
4351 * Convert a VT_UI2 to a DECIMAL.
4353 * PARAMS
4354 * usIn [I] Source
4355 * pDecOut [O] Destination
4357 * RETURNS
4358 * S_OK.
4360 HRESULT WINAPI VarDecFromUI2(USHORT usIn, DECIMAL* pDecOut)
4362 return VarDecFromUI4(usIn, pDecOut);
4365 /************************************************************************
4366 * VarDecFromUI4 (OLEAUT32.243)
4368 * Convert a VT_UI4 to a DECIMAL.
4370 * PARAMS
4371 * ulIn [I] Source
4372 * pDecOut [O] Destination
4374 * RETURNS
4375 * S_OK.
4377 HRESULT WINAPI VarDecFromUI4(ULONG ulIn, DECIMAL* pDecOut)
4379 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_POS,0);
4380 DEC_HI32(pDecOut) = 0;
4381 DEC_MID32(pDecOut) = 0;
4382 DEC_LO32(pDecOut) = ulIn;
4383 return S_OK;
4386 /************************************************************************
4387 * VarDecFromI8 (OLEAUT32.374)
4389 * Convert a VT_I8 to a DECIMAL.
4391 * PARAMS
4392 * llIn [I] Source
4393 * pDecOut [O] Destination
4395 * RETURNS
4396 * S_OK.
4398 HRESULT WINAPI VarDecFromI8(LONG64 llIn, DECIMAL* pDecOut)
4400 PULARGE_INTEGER pLi = (PULARGE_INTEGER)&llIn;
4402 DEC_HI32(pDecOut) = 0;
4404 /* Note: This assumes 2s complement integer representation */
4405 if (pLi->u.HighPart & 0x80000000)
4407 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_NEG,0);
4408 DEC_LO64(pDecOut) = -pLi->QuadPart;
4410 else
4412 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_POS,0);
4413 DEC_MID32(pDecOut) = pLi->u.HighPart;
4414 DEC_LO32(pDecOut) = pLi->u.LowPart;
4416 return S_OK;
4419 /************************************************************************
4420 * VarDecFromUI8 (OLEAUT32.375)
4422 * Convert a VT_UI8 to a DECIMAL.
4424 * PARAMS
4425 * ullIn [I] Source
4426 * pDecOut [O] Destination
4428 * RETURNS
4429 * S_OK.
4431 HRESULT WINAPI VarDecFromUI8(ULONG64 ullIn, DECIMAL* pDecOut)
4433 DEC_SIGNSCALE(pDecOut) = SIGNSCALE(DECIMAL_POS,0);
4434 DEC_HI32(pDecOut) = 0;
4435 DEC_LO64(pDecOut) = ullIn;
4436 return S_OK;
4439 /* Make two DECIMALS the same scale; used by math functions below */
4440 static HRESULT VARIANT_DecScale(const DECIMAL** ppDecLeft,
4441 const DECIMAL** ppDecRight,
4442 DECIMAL* pDecOut)
4444 static DECIMAL scaleFactor;
4445 DECIMAL decTemp;
4446 int scaleAmount, i;
4447 HRESULT hRet = S_OK;
4449 if (DEC_SIGN(*ppDecLeft) & ~DECIMAL_NEG || DEC_SIGN(*ppDecRight) & ~DECIMAL_NEG)
4450 return E_INVALIDARG;
4452 DEC_LO32(&scaleFactor) = 10;
4454 i = scaleAmount = DEC_SCALE(*ppDecLeft) - DEC_SCALE(*ppDecRight);
4456 if (!scaleAmount)
4457 return S_OK; /* Same scale */
4459 if (scaleAmount > 0)
4461 decTemp = *(*ppDecRight); /* Left is bigger - scale the right hand side */
4462 *ppDecRight = pDecOut;
4464 else
4466 decTemp = *(*ppDecLeft); /* Right is bigger - scale the left hand side */
4467 *ppDecLeft = pDecOut;
4468 i = scaleAmount = -scaleAmount;
4471 if (DEC_SCALE(&decTemp) + scaleAmount > DEC_MAX_SCALE)
4472 return DISP_E_OVERFLOW; /* Can't scale up */
4474 /* Multiply up the value to be scaled by the correct amount */
4475 while (SUCCEEDED(hRet) && i--)
4477 /* Note we are multiplying by a value with a scale of 0, so we don't recurse */
4478 hRet = VarDecMul(&decTemp, &scaleFactor, pDecOut);
4479 decTemp = *pDecOut;
4481 DEC_SCALE(pDecOut) += scaleAmount; /* Set the new scale */
4482 return hRet;
4485 /* Add two unsigned 32 bit values with overflow */
4486 static ULONG VARIANT_Add(ULONG ulLeft, ULONG ulRight, ULONG* pulHigh)
4488 ULARGE_INTEGER ul64;
4490 ul64.QuadPart = (ULONG64)ulLeft + (ULONG64)ulRight + (ULONG64)*pulHigh;
4491 *pulHigh = ul64.u.HighPart;
4492 return ul64.u.LowPart;
4495 /* Subtract two unsigned 32 bit values with underflow */
4496 static ULONG VARIANT_Sub(ULONG ulLeft, ULONG ulRight, ULONG* pulHigh)
4498 BOOL invert = FALSE;
4499 ULARGE_INTEGER ul64;
4501 ul64.QuadPart = (LONG64)ulLeft - (ULONG64)ulRight;
4502 if (ulLeft < ulRight)
4503 invert = TRUE;
4505 if (ul64.QuadPart > (ULONG64)*pulHigh)
4506 ul64.QuadPart -= (ULONG64)*pulHigh;
4507 else
4509 ul64.QuadPart -= (ULONG64)*pulHigh;
4510 invert = TRUE;
4512 if (invert)
4513 ul64.u.HighPart = -ul64.u.HighPart ;
4515 *pulHigh = ul64.u.HighPart;
4516 return ul64.u.LowPart;
4519 /* Multiply two unsigned 32 bit values with overflow */
4520 static ULONG VARIANT_Mul(ULONG ulLeft, ULONG ulRight, ULONG* pulHigh)
4522 ULARGE_INTEGER ul64;
4524 ul64.QuadPart = (ULONG64)ulLeft * (ULONG64)ulRight + (ULONG64)*pulHigh;
4525 *pulHigh = ul64.u.HighPart;
4526 return ul64.u.LowPart;
4529 /* Compare two decimals that have the same scale */
4530 static inline int VARIANT_DecCmp(const DECIMAL *pDecLeft, const DECIMAL *pDecRight)
4532 if ( DEC_HI32(pDecLeft) < DEC_HI32(pDecRight) ||
4533 (DEC_HI32(pDecLeft) <= DEC_HI32(pDecRight) && DEC_LO64(pDecLeft) < DEC_LO64(pDecRight)))
4534 return -1;
4535 else if (DEC_HI32(pDecLeft) == DEC_HI32(pDecRight) && DEC_LO64(pDecLeft) == DEC_LO64(pDecRight))
4536 return 0;
4537 return 1;
4540 /************************************************************************
4541 * VarDecAdd (OLEAUT32.177)
4543 * Add one DECIMAL to another.
4545 * PARAMS
4546 * pDecLeft [I] Source
4547 * pDecRight [I] Value to add
4548 * pDecOut [O] Destination
4550 * RETURNS
4551 * Success: S_OK.
4552 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
4554 HRESULT WINAPI VarDecAdd(const DECIMAL* pDecLeft, const DECIMAL* pDecRight, DECIMAL* pDecOut)
4556 HRESULT hRet;
4557 DECIMAL scaled;
4559 hRet = VARIANT_DecScale(&pDecLeft, &pDecRight, &scaled);
4561 if (SUCCEEDED(hRet))
4563 /* Our decimals now have the same scale, we can add them as 96 bit integers */
4564 ULONG overflow = 0;
4565 BYTE sign = DECIMAL_POS;
4566 int cmp;
4568 /* Correct for the sign of the result */
4569 if (DEC_SIGN(pDecLeft) && DEC_SIGN(pDecRight))
4571 /* -x + -y : Negative */
4572 sign = DECIMAL_NEG;
4573 goto VarDecAdd_AsPositive;
4575 else if (DEC_SIGN(pDecLeft) && !DEC_SIGN(pDecRight))
4577 cmp = VARIANT_DecCmp(pDecLeft, pDecRight);
4579 /* -x + y : Negative if x > y */
4580 if (cmp > 0)
4582 sign = DECIMAL_NEG;
4583 VarDecAdd_AsNegative:
4584 DEC_LO32(pDecOut) = VARIANT_Sub(DEC_LO32(pDecLeft), DEC_LO32(pDecRight), &overflow);
4585 DEC_MID32(pDecOut) = VARIANT_Sub(DEC_MID32(pDecLeft), DEC_MID32(pDecRight), &overflow);
4586 DEC_HI32(pDecOut) = VARIANT_Sub(DEC_HI32(pDecLeft), DEC_HI32(pDecRight), &overflow);
4588 else
4590 VarDecAdd_AsInvertedNegative:
4591 DEC_LO32(pDecOut) = VARIANT_Sub(DEC_LO32(pDecRight), DEC_LO32(pDecLeft), &overflow);
4592 DEC_MID32(pDecOut) = VARIANT_Sub(DEC_MID32(pDecRight), DEC_MID32(pDecLeft), &overflow);
4593 DEC_HI32(pDecOut) = VARIANT_Sub(DEC_HI32(pDecRight), DEC_HI32(pDecLeft), &overflow);
4596 else if (!DEC_SIGN(pDecLeft) && DEC_SIGN(pDecRight))
4598 cmp = VARIANT_DecCmp(pDecLeft, pDecRight);
4600 /* x + -y : Negative if x <= y */
4601 if (cmp <= 0)
4603 sign = DECIMAL_NEG;
4604 goto VarDecAdd_AsInvertedNegative;
4606 goto VarDecAdd_AsNegative;
4608 else
4610 /* x + y : Positive */
4611 VarDecAdd_AsPositive:
4612 DEC_LO32(pDecOut) = VARIANT_Add(DEC_LO32(pDecLeft), DEC_LO32(pDecRight), &overflow);
4613 DEC_MID32(pDecOut) = VARIANT_Add(DEC_MID32(pDecLeft), DEC_MID32(pDecRight), &overflow);
4614 DEC_HI32(pDecOut) = VARIANT_Add(DEC_HI32(pDecLeft), DEC_HI32(pDecRight), &overflow);
4617 if (overflow)
4618 return DISP_E_OVERFLOW; /* overflowed */
4620 DEC_SCALE(pDecOut) = DEC_SCALE(pDecLeft);
4621 DEC_SIGN(pDecOut) = sign;
4623 return hRet;
4626 /* translate from external DECIMAL format into an internal representation */
4627 static void VARIANT_DIFromDec(const DECIMAL * from, VARIANT_DI * to)
4629 to->scale = DEC_SCALE(from);
4630 to->sign = DEC_SIGN(from) ? 1 : 0;
4632 to->bitsnum[0] = DEC_LO32(from);
4633 to->bitsnum[1] = DEC_MID32(from);
4634 to->bitsnum[2] = DEC_HI32(from);
4637 static void VARIANT_DecFromDI(const VARIANT_DI * from, DECIMAL * to)
4639 if (from->sign) {
4640 DEC_SIGNSCALE(to) = SIGNSCALE(DECIMAL_NEG, from->scale);
4641 } else {
4642 DEC_SIGNSCALE(to) = SIGNSCALE(DECIMAL_POS, from->scale);
4645 DEC_LO32(to) = from->bitsnum[0];
4646 DEC_MID32(to) = from->bitsnum[1];
4647 DEC_HI32(to) = from->bitsnum[2];
4650 /* clear an internal representation of a DECIMAL */
4651 static void VARIANT_DI_clear(VARIANT_DI * i)
4653 memset(i, 0, sizeof(VARIANT_DI));
4656 /* divide the (unsigned) number stored in p (LSB) by a byte value (<= 0xff). Any nonzero
4657 size is supported. The value in p is replaced by the quotient of the division, and
4658 the remainder is returned as a result. This routine is most often used with a divisor
4659 of 10 in order to scale up numbers, and in the DECIMAL->string conversion.
4661 static unsigned char VARIANT_int_divbychar(DWORD * p, unsigned int n, unsigned char divisor)
4663 if (divisor == 0) {
4664 /* division by 0 */
4665 return 0xFF;
4666 } else if (divisor == 1) {
4667 /* dividend remains unchanged */
4668 return 0;
4669 } else {
4670 unsigned char remainder = 0;
4671 ULONGLONG iTempDividend;
4672 signed int i;
4674 for (i = n - 1; i >= 0 && !p[i]; i--); /* skip leading zeros */
4675 for (; i >= 0; i--) {
4676 iTempDividend = ((ULONGLONG)remainder << 32) + p[i];
4677 remainder = iTempDividend % divisor;
4678 p[i] = iTempDividend / divisor;
4681 return remainder;
4685 /* check to test if encoded number is a zero. Returns 1 if zero, 0 for nonzero */
4686 static BOOL VARIANT_int_iszero(const DWORD * p, unsigned int n)
4688 for (; n > 0; n--) if (*p++ != 0) return FALSE;
4689 return TRUE;
4692 /* multiply two DECIMALS, without changing either one, and place result in third
4693 parameter. Result is normalized when scale is > 0. Attempts to remove significant
4694 digits when scale > 0 in order to fit an overflowing result. Final overflow
4695 flag is returned.
4697 static int VARIANT_DI_mul(const VARIANT_DI * a, const VARIANT_DI * b, VARIANT_DI * result)
4699 BOOL r_overflow = FALSE;
4700 DWORD running[6];
4701 signed int mulstart;
4703 VARIANT_DI_clear(result);
4704 result->sign = (a->sign ^ b->sign) ? 1 : 0;
4706 /* Multiply 128-bit operands into a (max) 256-bit result. The scale
4707 of the result is formed by adding the scales of the operands.
4709 result->scale = a->scale + b->scale;
4710 memset(running, 0, sizeof(running));
4712 /* count number of leading zero-bytes in operand A */
4713 for (mulstart = sizeof(a->bitsnum)/sizeof(DWORD) - 1; mulstart >= 0 && !a->bitsnum[mulstart]; mulstart--);
4714 if (mulstart < 0) {
4715 /* result is 0, because operand A is 0 */
4716 result->scale = 0;
4717 result->sign = 0;
4718 } else {
4719 unsigned char remainder = 0;
4720 int iA;
4722 /* perform actual multiplication */
4723 for (iA = 0; iA <= mulstart; iA++) {
4724 ULONG iOverflowMul;
4725 int iB;
4727 for (iOverflowMul = 0, iB = 0; iB < sizeof(b->bitsnum)/sizeof(DWORD); iB++) {
4728 ULONG iRV;
4729 int iR;
4731 iRV = VARIANT_Mul(b->bitsnum[iB], a->bitsnum[iA], &iOverflowMul);
4732 iR = iA + iB;
4733 do {
4734 running[iR] = VARIANT_Add(running[iR], 0, &iRV);
4735 iR++;
4736 } while (iRV);
4740 /* Too bad - native oleaut does not do this, so we should not either */
4741 #if 0
4742 /* While the result is divisible by 10, and the scale > 0, divide by 10.
4743 This operation should not lose significant digits, and gives an
4744 opportunity to reduce the possibility of overflows in future
4745 operations issued by the application.
4747 while (result->scale > 0) {
4748 memcpy(quotient, running, sizeof(quotient));
4749 remainder = VARIANT_int_divbychar(quotient, sizeof(quotient) / sizeof(DWORD), 10);
4750 if (remainder > 0) break;
4751 memcpy(running, quotient, sizeof(quotient));
4752 result->scale--;
4754 #endif
4755 /* While the 256-bit result overflows, and the scale > 0, divide by 10.
4756 This operation *will* lose significant digits of the result because
4757 all the factors of 10 were consumed by the previous operation.
4759 while (result->scale > 0 && !VARIANT_int_iszero(
4760 running + sizeof(result->bitsnum) / sizeof(DWORD),
4761 (sizeof(running) - sizeof(result->bitsnum)) / sizeof(DWORD))) {
4763 remainder = VARIANT_int_divbychar(running, sizeof(running) / sizeof(DWORD), 10);
4764 if (remainder > 0) WARN("losing significant digits (remainder %u)...\n", remainder);
4765 result->scale--;
4768 /* round up the result - native oleaut32 does this */
4769 if (remainder >= 5) {
4770 unsigned int i;
4771 for (remainder = 1, i = 0; i < sizeof(running)/sizeof(DWORD) && remainder; i++) {
4772 ULONGLONG digit = running[i] + 1;
4773 remainder = (digit > 0xFFFFFFFF) ? 1 : 0;
4774 running[i] = digit & 0xFFFFFFFF;
4778 /* Signal overflow if scale == 0 and 256-bit result still overflows,
4779 and copy result bits into result structure
4781 r_overflow = !VARIANT_int_iszero(
4782 running + sizeof(result->bitsnum)/sizeof(DWORD),
4783 (sizeof(running) - sizeof(result->bitsnum))/sizeof(DWORD));
4784 memcpy(result->bitsnum, running, sizeof(result->bitsnum));
4786 return r_overflow;
4789 /* cast DECIMAL into string. Any scale should be handled properly. en_US locale is
4790 hardcoded (period for decimal separator, dash as negative sign). Returns TRUE for
4791 success, FALSE if insufficient space in output buffer.
4793 static BOOL VARIANT_DI_tostringW(const VARIANT_DI * a, WCHAR * s, unsigned int n)
4795 BOOL overflow = FALSE;
4796 DWORD quotient[3];
4797 unsigned char remainder;
4798 unsigned int i;
4800 /* place negative sign */
4801 if (!VARIANT_int_iszero(a->bitsnum, sizeof(a->bitsnum) / sizeof(DWORD)) && a->sign) {
4802 if (n > 0) {
4803 *s++ = '-';
4804 n--;
4806 else overflow = TRUE;
4809 /* prepare initial 0 */
4810 if (!overflow) {
4811 if (n >= 2) {
4812 s[0] = '0';
4813 s[1] = '\0';
4814 } else overflow = TRUE;
4817 i = 0;
4818 memcpy(quotient, a->bitsnum, sizeof(a->bitsnum));
4819 while (!overflow && !VARIANT_int_iszero(quotient, sizeof(quotient) / sizeof(DWORD))) {
4820 remainder = VARIANT_int_divbychar(quotient, sizeof(quotient) / sizeof(DWORD), 10);
4821 if (i + 2 > n) {
4822 overflow = TRUE;
4823 } else {
4824 s[i++] = '0' + remainder;
4825 s[i] = '\0';
4829 if (!overflow && !VARIANT_int_iszero(a->bitsnum, sizeof(a->bitsnum) / sizeof(DWORD))) {
4831 /* reverse order of digits */
4832 WCHAR * x = s; WCHAR * y = s + i - 1;
4833 while (x < y) {
4834 *x ^= *y;
4835 *y ^= *x;
4836 *x++ ^= *y--;
4839 /* check for decimal point. "i" now has string length */
4840 if (i <= a->scale) {
4841 unsigned int numzeroes = a->scale + 1 - i;
4842 if (i + 1 + numzeroes >= n) {
4843 overflow = TRUE;
4844 } else {
4845 memmove(s + numzeroes, s, (i + 1) * sizeof(WCHAR));
4846 i += numzeroes;
4847 while (numzeroes > 0) {
4848 s[--numzeroes] = '0';
4853 /* place decimal point */
4854 if (a->scale > 0) {
4855 unsigned int periodpos = i - a->scale;
4856 if (i + 2 >= n) {
4857 overflow = TRUE;
4858 } else {
4859 memmove(s + periodpos + 1, s + periodpos, (i + 1 - periodpos) * sizeof(WCHAR));
4860 s[periodpos] = '.'; i++;
4862 /* remove extra zeros at the end, if any */
4863 while (s[i - 1] == '0') s[--i] = '\0';
4864 if (s[i - 1] == '.') s[--i] = '\0';
4869 return !overflow;
4872 /* shift the bits of a DWORD array to the left. p[0] is assumed LSB */
4873 static void VARIANT_int_shiftleft(DWORD * p, unsigned int n, unsigned int shift)
4875 DWORD shifted;
4876 unsigned int i;
4878 /* shift whole DWORDs to the left */
4879 while (shift >= 32)
4881 memmove(p + 1, p, (n - 1) * sizeof(DWORD));
4882 *p = 0; shift -= 32;
4885 /* shift remainder (1..31 bits) */
4886 shifted = 0;
4887 if (shift > 0) for (i = 0; i < n; i++)
4889 DWORD b;
4890 b = p[i] >> (32 - shift);
4891 p[i] = (p[i] << shift) | shifted;
4892 shifted = b;
4896 /* add the (unsigned) numbers stored in two DWORD arrays with LSB at index 0.
4897 Value at v is incremented by the value at p. Any size is supported, provided
4898 that v is not shorter than p. Any unapplied carry is returned as a result.
4900 static unsigned char VARIANT_int_add(DWORD * v, unsigned int nv, const DWORD * p,
4901 unsigned int np)
4903 unsigned char carry = 0;
4905 if (nv >= np) {
4906 ULONGLONG sum;
4907 unsigned int i;
4909 for (i = 0; i < np; i++) {
4910 sum = (ULONGLONG)v[i]
4911 + (ULONGLONG)p[i]
4912 + (ULONGLONG)carry;
4913 v[i] = sum & 0xffffffff;
4914 carry = sum >> 32;
4916 for (; i < nv && carry; i++) {
4917 sum = (ULONGLONG)v[i]
4918 + (ULONGLONG)carry;
4919 v[i] = sum & 0xffffffff;
4920 carry = sum >> 32;
4923 return carry;
4926 /* perform integral division with operand p as dividend. Parameter n indicates
4927 number of available DWORDs in divisor p, but available space in p must be
4928 actually at least 2 * n DWORDs, because the remainder of the integral
4929 division is built in the next n DWORDs past the start of the quotient. This
4930 routine replaces the dividend in p with the quotient, and appends n
4931 additional DWORDs for the remainder.
4933 Thanks to Lee & Mark Atkinson for their book _Using_C_ (my very first book on
4934 C/C++ :-) where the "longhand binary division" algorithm was exposed for the
4935 source code to the VLI (Very Large Integer) division operator. This algorithm
4936 was then heavily modified by me (Alex Villacis Lasso) in order to handle
4937 variably-scaled integers such as the MS DECIMAL representation.
4939 static void VARIANT_int_div(DWORD * p, unsigned int n, const DWORD * divisor,
4940 unsigned int dn)
4942 unsigned int i;
4943 DWORD tempsub[8];
4944 DWORD * negdivisor = tempsub + n;
4946 /* build 2s-complement of divisor */
4947 for (i = 0; i < n; i++) negdivisor[i] = (i < dn) ? ~divisor[i] : 0xFFFFFFFF;
4948 p[n] = 1;
4949 VARIANT_int_add(negdivisor, n, p + n, 1);
4950 memset(p + n, 0, n * sizeof(DWORD));
4952 /* skip all leading zero DWORDs in quotient */
4953 for (i = 0; i < n && !p[n - 1]; i++) VARIANT_int_shiftleft(p, n, 32);
4954 /* i is now number of DWORDs left to process */
4955 for (i <<= 5; i < (n << 5); i++) {
4956 VARIANT_int_shiftleft(p, n << 1, 1); /* shl quotient+remainder */
4958 /* trial subtraction */
4959 memcpy(tempsub, p + n, n * sizeof(DWORD));
4960 VARIANT_int_add(tempsub, n, negdivisor, n);
4962 /* check whether result of subtraction was negative */
4963 if ((tempsub[n - 1] & 0x80000000) == 0) {
4964 memcpy(p + n, tempsub, n * sizeof(DWORD));
4965 p[0] |= 1;
4970 /* perform integral multiplication by a byte operand. Used for scaling by 10 */
4971 static unsigned char VARIANT_int_mulbychar(DWORD * p, unsigned int n, unsigned char m)
4973 unsigned int i;
4974 ULONG iOverflowMul;
4976 for (iOverflowMul = 0, i = 0; i < n; i++)
4977 p[i] = VARIANT_Mul(p[i], m, &iOverflowMul);
4978 return (unsigned char)iOverflowMul;
4981 /* increment value in A by the value indicated in B, with scale adjusting.
4982 Modifies parameters by adjusting scales. Returns 0 if addition was
4983 successful, nonzero if a parameter underflowed before it could be
4984 successfully used in the addition.
4986 static int VARIANT_int_addlossy(
4987 DWORD * a, int * ascale, unsigned int an,
4988 DWORD * b, int * bscale, unsigned int bn)
4990 int underflow = 0;
4992 if (VARIANT_int_iszero(a, an)) {
4993 /* if A is zero, copy B into A, after removing digits */
4994 while (bn > an && !VARIANT_int_iszero(b + an, bn - an)) {
4995 VARIANT_int_divbychar(b, bn, 10);
4996 (*bscale)--;
4998 memcpy(a, b, an * sizeof(DWORD));
4999 *ascale = *bscale;
5000 } else if (!VARIANT_int_iszero(b, bn)) {
5001 unsigned int tn = an + 1;
5002 DWORD t[5];
5004 if (bn + 1 > tn) tn = bn + 1;
5005 if (*ascale != *bscale) {
5006 /* first (optimistic) try - try to scale down the one with the bigger
5007 scale, while this number is divisible by 10 */
5008 DWORD * digitchosen;
5009 unsigned int nchosen;
5010 int * scalechosen;
5011 int targetscale;
5013 if (*ascale < *bscale) {
5014 targetscale = *ascale;
5015 scalechosen = bscale;
5016 digitchosen = b;
5017 nchosen = bn;
5018 } else {
5019 targetscale = *bscale;
5020 scalechosen = ascale;
5021 digitchosen = a;
5022 nchosen = an;
5024 memset(t, 0, tn * sizeof(DWORD));
5025 memcpy(t, digitchosen, nchosen * sizeof(DWORD));
5027 /* divide by 10 until target scale is reached */
5028 while (*scalechosen > targetscale) {
5029 unsigned char remainder = VARIANT_int_divbychar(t, tn, 10);
5030 if (!remainder) {
5031 (*scalechosen)--;
5032 memcpy(digitchosen, t, nchosen * sizeof(DWORD));
5033 } else break;
5037 if (*ascale != *bscale) {
5038 DWORD * digitchosen;
5039 unsigned int nchosen;
5040 int * scalechosen;
5041 int targetscale;
5043 /* try to scale up the one with the smaller scale */
5044 if (*ascale > *bscale) {
5045 targetscale = *ascale;
5046 scalechosen = bscale;
5047 digitchosen = b;
5048 nchosen = bn;
5049 } else {
5050 targetscale = *bscale;
5051 scalechosen = ascale;
5052 digitchosen = a;
5053 nchosen = an;
5055 memset(t, 0, tn * sizeof(DWORD));
5056 memcpy(t, digitchosen, nchosen * sizeof(DWORD));
5058 /* multiply by 10 until target scale is reached, or
5059 significant bytes overflow the number
5061 while (*scalechosen < targetscale && t[nchosen] == 0) {
5062 VARIANT_int_mulbychar(t, tn, 10);
5063 if (t[nchosen] == 0) {
5064 /* still does not overflow */
5065 (*scalechosen)++;
5066 memcpy(digitchosen, t, nchosen * sizeof(DWORD));
5071 if (*ascale != *bscale) {
5072 /* still different? try to scale down the one with the bigger scale
5073 (this *will* lose significant digits) */
5074 DWORD * digitchosen;
5075 unsigned int nchosen;
5076 int * scalechosen;
5077 int targetscale;
5079 if (*ascale < *bscale) {
5080 targetscale = *ascale;
5081 scalechosen = bscale;
5082 digitchosen = b;
5083 nchosen = bn;
5084 } else {
5085 targetscale = *bscale;
5086 scalechosen = ascale;
5087 digitchosen = a;
5088 nchosen = an;
5090 memset(t, 0, tn * sizeof(DWORD));
5091 memcpy(t, digitchosen, nchosen * sizeof(DWORD));
5093 /* divide by 10 until target scale is reached */
5094 while (*scalechosen > targetscale) {
5095 VARIANT_int_divbychar(t, tn, 10);
5096 (*scalechosen)--;
5097 memcpy(digitchosen, t, nchosen * sizeof(DWORD));
5101 /* check whether any of the operands still has significant digits
5102 (underflow case 1)
5104 if (VARIANT_int_iszero(a, an) || VARIANT_int_iszero(b, bn)) {
5105 underflow = 1;
5106 } else {
5107 /* at this step, both numbers have the same scale and can be added
5108 as integers. However, the result might not fit in A, so further
5109 scaling down might be necessary.
5111 while (!underflow) {
5112 memset(t, 0, tn * sizeof(DWORD));
5113 memcpy(t, a, an * sizeof(DWORD));
5115 VARIANT_int_add(t, tn, b, bn);
5116 if (VARIANT_int_iszero(t + an, tn - an)) {
5117 /* addition was successful */
5118 memcpy(a, t, an * sizeof(DWORD));
5119 break;
5120 } else {
5121 /* addition overflowed - remove significant digits
5122 from both operands and try again */
5123 VARIANT_int_divbychar(a, an, 10); (*ascale)--;
5124 VARIANT_int_divbychar(b, bn, 10); (*bscale)--;
5125 /* check whether any operand keeps significant digits after
5126 scaledown (underflow case 2)
5128 underflow = (VARIANT_int_iszero(a, an) || VARIANT_int_iszero(b, bn));
5133 return underflow;
5136 /* perform complete DECIMAL division in the internal representation. Returns
5137 0 if the division was completed (even if quotient is set to 0), or nonzero
5138 in case of quotient overflow.
5140 static HRESULT VARIANT_DI_div(const VARIANT_DI * dividend, const VARIANT_DI * divisor,
5141 VARIANT_DI * quotient, BOOL round_remainder)
5143 HRESULT r_overflow = S_OK;
5145 if (VARIANT_int_iszero(divisor->bitsnum, sizeof(divisor->bitsnum)/sizeof(DWORD))) {
5146 /* division by 0 */
5147 r_overflow = DISP_E_DIVBYZERO;
5148 } else if (VARIANT_int_iszero(dividend->bitsnum, sizeof(dividend->bitsnum)/sizeof(DWORD))) {
5149 VARIANT_DI_clear(quotient);
5150 } else {
5151 int quotientscale, remainderscale, tempquotientscale;
5152 DWORD remainderplusquotient[8];
5153 int underflow;
5155 quotientscale = remainderscale = (int)dividend->scale - (int)divisor->scale;
5156 tempquotientscale = quotientscale;
5157 VARIANT_DI_clear(quotient);
5158 quotient->sign = (dividend->sign ^ divisor->sign) ? 1 : 0;
5160 /* The following strategy is used for division
5161 1) if there was a nonzero remainder from previous iteration, use it as
5162 dividend for this iteration, else (for first iteration) use intended
5163 dividend
5164 2) perform integer division in temporary buffer, develop quotient in
5165 low-order part, remainder in high-order part
5166 3) add quotient from step 2 to final result, with possible loss of
5167 significant digits
5168 4) multiply integer part of remainder by 10, while incrementing the
5169 scale of the remainder. This operation preserves the intended value
5170 of the remainder.
5171 5) loop to step 1 until one of the following is true:
5172 a) remainder is zero (exact division achieved)
5173 b) addition in step 3 fails to modify bits in quotient (remainder underflow)
5175 memset(remainderplusquotient, 0, sizeof(remainderplusquotient));
5176 memcpy(remainderplusquotient, dividend->bitsnum, sizeof(dividend->bitsnum));
5177 do {
5178 VARIANT_int_div(
5179 remainderplusquotient, 4,
5180 divisor->bitsnum, sizeof(divisor->bitsnum)/sizeof(DWORD));
5181 underflow = VARIANT_int_addlossy(
5182 quotient->bitsnum, &quotientscale, sizeof(quotient->bitsnum) / sizeof(DWORD),
5183 remainderplusquotient, &tempquotientscale, 4);
5184 if (round_remainder) {
5185 if(remainderplusquotient[4] >= 5){
5186 unsigned int i;
5187 unsigned char remainder = 1;
5188 for (i = 0; i < sizeof(quotient->bitsnum) / sizeof(DWORD) && remainder; i++) {
5189 ULONGLONG digit = quotient->bitsnum[i] + 1;
5190 remainder = (digit > 0xFFFFFFFF) ? 1 : 0;
5191 quotient->bitsnum[i] = digit & 0xFFFFFFFF;
5194 memset(remainderplusquotient, 0, sizeof(remainderplusquotient));
5195 } else {
5196 VARIANT_int_mulbychar(remainderplusquotient + 4, 4, 10);
5197 memcpy(remainderplusquotient, remainderplusquotient + 4, 4 * sizeof(DWORD));
5199 tempquotientscale = ++remainderscale;
5200 } while (!underflow && !VARIANT_int_iszero(remainderplusquotient + 4, 4));
5202 /* quotient scale might now be negative (extremely big number). If, so, try
5203 to multiply quotient by 10 (without overflowing), while adjusting the scale,
5204 until scale is 0. If this cannot be done, it is a real overflow.
5206 while (r_overflow == S_OK && quotientscale < 0) {
5207 memset(remainderplusquotient, 0, sizeof(remainderplusquotient));
5208 memcpy(remainderplusquotient, quotient->bitsnum, sizeof(quotient->bitsnum));
5209 VARIANT_int_mulbychar(remainderplusquotient, sizeof(remainderplusquotient)/sizeof(DWORD), 10);
5210 if (VARIANT_int_iszero(remainderplusquotient + sizeof(quotient->bitsnum)/sizeof(DWORD),
5211 (sizeof(remainderplusquotient) - sizeof(quotient->bitsnum))/sizeof(DWORD))) {
5212 quotientscale++;
5213 memcpy(quotient->bitsnum, remainderplusquotient, sizeof(quotient->bitsnum));
5214 } else r_overflow = DISP_E_OVERFLOW;
5216 if (r_overflow == S_OK) {
5217 if (quotientscale <= 255) quotient->scale = quotientscale;
5218 else VARIANT_DI_clear(quotient);
5221 return r_overflow;
5224 /* This procedure receives a VARIANT_DI with a defined mantissa and sign, but
5225 with an undefined scale, which will be assigned to (if possible). It also
5226 receives an exponent of 2. This procedure will then manipulate the mantissa
5227 and calculate a corresponding scale, so that the exponent2 value is assimilated
5228 into the VARIANT_DI and is therefore no longer necessary. Returns S_OK if
5229 successful, or DISP_E_OVERFLOW if the represented value is too big to fit into
5230 a DECIMAL. */
5231 static HRESULT VARIANT_DI_normalize(VARIANT_DI * val, int exponent2, BOOL isDouble)
5233 HRESULT hres = S_OK;
5234 int exponent5, exponent10;
5236 /* A factor of 2^exponent2 is equivalent to (10^exponent2)/(5^exponent2), and
5237 thus equal to (5^-exponent2)*(10^exponent2). After all manipulations,
5238 exponent10 might be used to set the VARIANT_DI scale directly. However,
5239 the value of 5^-exponent5 must be assimilated into the VARIANT_DI. */
5240 exponent5 = -exponent2;
5241 exponent10 = exponent2;
5243 /* Handle exponent5 > 0 */
5244 while (exponent5 > 0) {
5245 char bPrevCarryBit;
5246 char bCurrCarryBit;
5248 /* In order to multiply the value represented by the VARIANT_DI by 5, it
5249 is best to multiply by 10/2. Therefore, exponent10 is incremented, and
5250 somehow the mantissa should be divided by 2. */
5251 if ((val->bitsnum[0] & 1) == 0) {
5252 /* The mantissa is divisible by 2. Therefore the division can be done
5253 without losing significant digits. */
5254 exponent10++; exponent5--;
5256 /* Shift right */
5257 bPrevCarryBit = val->bitsnum[2] & 1;
5258 val->bitsnum[2] >>= 1;
5259 bCurrCarryBit = val->bitsnum[1] & 1;
5260 val->bitsnum[1] = (val->bitsnum[1] >> 1) | (bPrevCarryBit ? 0x80000000 : 0);
5261 val->bitsnum[0] = (val->bitsnum[0] >> 1) | (bCurrCarryBit ? 0x80000000 : 0);
5262 } else {
5263 /* The mantissa is NOT divisible by 2. Therefore the mantissa should
5264 be multiplied by 5, unless the multiplication overflows. */
5265 DWORD temp_bitsnum[3];
5267 exponent5--;
5269 memcpy(temp_bitsnum, val->bitsnum, 3 * sizeof(DWORD));
5270 if (0 == VARIANT_int_mulbychar(temp_bitsnum, 3, 5)) {
5271 /* Multiplication succeeded without overflow, so copy result back
5272 into VARIANT_DI */
5273 memcpy(val->bitsnum, temp_bitsnum, 3 * sizeof(DWORD));
5275 /* Mask out 3 extraneous bits introduced by the multiply */
5276 } else {
5277 /* Multiplication by 5 overflows. The mantissa should be divided
5278 by 2, and therefore will lose significant digits. */
5279 exponent10++;
5281 /* Shift right */
5282 bPrevCarryBit = val->bitsnum[2] & 1;
5283 val->bitsnum[2] >>= 1;
5284 bCurrCarryBit = val->bitsnum[1] & 1;
5285 val->bitsnum[1] = (val->bitsnum[1] >> 1) | (bPrevCarryBit ? 0x80000000 : 0);
5286 val->bitsnum[0] = (val->bitsnum[0] >> 1) | (bCurrCarryBit ? 0x80000000 : 0);
5291 /* Handle exponent5 < 0 */
5292 while (exponent5 < 0) {
5293 /* In order to divide the value represented by the VARIANT_DI by 5, it
5294 is best to multiply by 2/10. Therefore, exponent10 is decremented,
5295 and the mantissa should be multiplied by 2 */
5296 if ((val->bitsnum[2] & 0x80000000) == 0) {
5297 /* The mantissa can withstand a shift-left without overflowing */
5298 exponent10--; exponent5++;
5299 VARIANT_int_shiftleft(val->bitsnum, 3, 1);
5300 } else {
5301 /* The mantissa would overflow if shifted. Therefore it should be
5302 directly divided by 5. This will lose significant digits, unless
5303 by chance the mantissa happens to be divisible by 5 */
5304 exponent5++;
5305 VARIANT_int_divbychar(val->bitsnum, 3, 5);
5309 /* At this point, the mantissa has assimilated the exponent5, but the
5310 exponent10 might not be suitable for assignment. The exponent10 must be
5311 in the range [-DEC_MAX_SCALE..0], so the mantissa must be scaled up or
5312 down appropriately. */
5313 while (hres == S_OK && exponent10 > 0) {
5314 /* In order to bring exponent10 down to 0, the mantissa should be
5315 multiplied by 10 to compensate. If the exponent10 is too big, this
5316 will cause the mantissa to overflow. */
5317 if (0 == VARIANT_int_mulbychar(val->bitsnum, 3, 10)) {
5318 exponent10--;
5319 } else {
5320 hres = DISP_E_OVERFLOW;
5323 while (exponent10 < -DEC_MAX_SCALE) {
5324 int rem10;
5325 /* In order to bring exponent up to -DEC_MAX_SCALE, the mantissa should
5326 be divided by 10 to compensate. If the exponent10 is too small, this
5327 will cause the mantissa to underflow and become 0 */
5328 rem10 = VARIANT_int_divbychar(val->bitsnum, 3, 10);
5329 exponent10++;
5330 if (VARIANT_int_iszero(val->bitsnum, 3)) {
5331 /* Underflow, unable to keep dividing */
5332 exponent10 = 0;
5333 } else if (rem10 >= 5) {
5334 DWORD x = 1;
5335 VARIANT_int_add(val->bitsnum, 3, &x, 1);
5338 /* This step is required in order to remove excess bits of precision from the
5339 end of the bit representation, down to the precision guaranteed by the
5340 floating point number. */
5341 if (isDouble) {
5342 while (exponent10 < 0 && (val->bitsnum[2] != 0 || (val->bitsnum[2] == 0 && (val->bitsnum[1] & 0xFFE00000) != 0))) {
5343 int rem10;
5345 rem10 = VARIANT_int_divbychar(val->bitsnum, 3, 10);
5346 exponent10++;
5347 if (rem10 >= 5) {
5348 DWORD x = 1;
5349 VARIANT_int_add(val->bitsnum, 3, &x, 1);
5352 } else {
5353 while (exponent10 < 0 && (val->bitsnum[2] != 0 || val->bitsnum[1] != 0 ||
5354 (val->bitsnum[2] == 0 && val->bitsnum[1] == 0 && (val->bitsnum[0] & 0xFF000000) != 0))) {
5355 int rem10;
5357 rem10 = VARIANT_int_divbychar(val->bitsnum, 3, 10);
5358 exponent10++;
5359 if (rem10 >= 5) {
5360 DWORD x = 1;
5361 VARIANT_int_add(val->bitsnum, 3, &x, 1);
5365 /* Remove multiples of 10 from the representation */
5366 while (exponent10 < 0) {
5367 DWORD temp_bitsnum[3];
5369 memcpy(temp_bitsnum, val->bitsnum, 3 * sizeof(DWORD));
5370 if (0 == VARIANT_int_divbychar(temp_bitsnum, 3, 10)) {
5371 exponent10++;
5372 memcpy(val->bitsnum, temp_bitsnum, 3 * sizeof(DWORD));
5373 } else break;
5376 /* Scale assignment */
5377 if (hres == S_OK) val->scale = -exponent10;
5379 return hres;
5382 typedef union
5384 struct
5386 unsigned int m : 23;
5387 unsigned int exp_bias : 8;
5388 unsigned int sign : 1;
5389 } i;
5390 float f;
5391 } R4_FIELDS;
5393 /* Convert a 32-bit floating point number into a DECIMAL, without using an
5394 intermediate string step. */
5395 static HRESULT VARIANT_DI_FromR4(float source, VARIANT_DI * dest)
5397 HRESULT hres = S_OK;
5398 R4_FIELDS fx;
5400 fx.f = source;
5402 /* Detect special cases */
5403 if (fx.i.m == 0 && fx.i.exp_bias == 0) {
5404 /* Floating-point zero */
5405 VARIANT_DI_clear(dest);
5406 } else if (fx.i.m == 0 && fx.i.exp_bias == 0xFF) {
5407 /* Floating-point infinity */
5408 hres = DISP_E_OVERFLOW;
5409 } else if (fx.i.exp_bias == 0xFF) {
5410 /* Floating-point NaN */
5411 hres = DISP_E_BADVARTYPE;
5412 } else {
5413 int exponent2;
5414 VARIANT_DI_clear(dest);
5416 exponent2 = fx.i.exp_bias - 127; /* Get unbiased exponent */
5417 dest->sign = fx.i.sign; /* Sign is simply copied */
5419 /* Copy significant bits to VARIANT_DI mantissa */
5420 dest->bitsnum[0] = fx.i.m;
5421 dest->bitsnum[0] &= 0x007FFFFF;
5422 if (fx.i.exp_bias == 0) {
5423 /* Denormalized number - correct exponent */
5424 exponent2++;
5425 } else {
5426 /* Add hidden bit to mantissa */
5427 dest->bitsnum[0] |= 0x00800000;
5430 /* The act of copying a FP mantissa as integer bits is equivalent to
5431 shifting left the mantissa 23 bits. The exponent2 is reduced to
5432 compensate. */
5433 exponent2 -= 23;
5435 hres = VARIANT_DI_normalize(dest, exponent2, FALSE);
5438 return hres;
5441 typedef union
5443 struct
5445 unsigned int m_lo : 32; /* 52 bits of precision */
5446 unsigned int m_hi : 20;
5447 unsigned int exp_bias : 11; /* bias == 1023 */
5448 unsigned int sign : 1;
5449 } i;
5450 double d;
5451 } R8_FIELDS;
5453 /* Convert a 64-bit floating point number into a DECIMAL, without using an
5454 intermediate string step. */
5455 static HRESULT VARIANT_DI_FromR8(double source, VARIANT_DI * dest)
5457 HRESULT hres = S_OK;
5458 R8_FIELDS fx;
5460 fx.d = source;
5462 /* Detect special cases */
5463 if (fx.i.m_lo == 0 && fx.i.m_hi == 0 && fx.i.exp_bias == 0) {
5464 /* Floating-point zero */
5465 VARIANT_DI_clear(dest);
5466 } else if (fx.i.m_lo == 0 && fx.i.m_hi == 0 && fx.i.exp_bias == 0x7FF) {
5467 /* Floating-point infinity */
5468 hres = DISP_E_OVERFLOW;
5469 } else if (fx.i.exp_bias == 0x7FF) {
5470 /* Floating-point NaN */
5471 hres = DISP_E_BADVARTYPE;
5472 } else {
5473 int exponent2;
5474 VARIANT_DI_clear(dest);
5476 exponent2 = fx.i.exp_bias - 1023; /* Get unbiased exponent */
5477 dest->sign = fx.i.sign; /* Sign is simply copied */
5479 /* Copy significant bits to VARIANT_DI mantissa */
5480 dest->bitsnum[0] = fx.i.m_lo;
5481 dest->bitsnum[1] = fx.i.m_hi;
5482 dest->bitsnum[1] &= 0x000FFFFF;
5483 if (fx.i.exp_bias == 0) {
5484 /* Denormalized number - correct exponent */
5485 exponent2++;
5486 } else {
5487 /* Add hidden bit to mantissa */
5488 dest->bitsnum[1] |= 0x00100000;
5491 /* The act of copying a FP mantissa as integer bits is equivalent to
5492 shifting left the mantissa 52 bits. The exponent2 is reduced to
5493 compensate. */
5494 exponent2 -= 52;
5496 hres = VARIANT_DI_normalize(dest, exponent2, TRUE);
5499 return hres;
5502 static HRESULT VARIANT_do_division(const DECIMAL *pDecLeft, const DECIMAL *pDecRight, DECIMAL *pDecOut,
5503 BOOL round)
5505 HRESULT hRet = S_OK;
5506 VARIANT_DI di_left, di_right, di_result;
5507 HRESULT divresult;
5509 VARIANT_DIFromDec(pDecLeft, &di_left);
5510 VARIANT_DIFromDec(pDecRight, &di_right);
5511 divresult = VARIANT_DI_div(&di_left, &di_right, &di_result, round);
5512 if (divresult != S_OK)
5514 /* division actually overflowed */
5515 hRet = divresult;
5517 else
5519 hRet = S_OK;
5521 if (di_result.scale > DEC_MAX_SCALE)
5523 unsigned char remainder = 0;
5525 /* division underflowed. In order to comply with the MSDN
5526 specifications for DECIMAL ranges, some significant digits
5527 must be removed
5529 WARN("result scale is %u, scaling (with loss of significant digits)...\n",
5530 di_result.scale);
5531 while (di_result.scale > DEC_MAX_SCALE &&
5532 !VARIANT_int_iszero(di_result.bitsnum, sizeof(di_result.bitsnum) / sizeof(DWORD)))
5534 remainder = VARIANT_int_divbychar(di_result.bitsnum, sizeof(di_result.bitsnum) / sizeof(DWORD), 10);
5535 di_result.scale--;
5537 if (di_result.scale > DEC_MAX_SCALE)
5539 WARN("result underflowed, setting to 0\n");
5540 di_result.scale = 0;
5541 di_result.sign = 0;
5543 else if (remainder >= 5) /* round up result - native oleaut32 does this */
5545 unsigned int i;
5546 for (remainder = 1, i = 0; i < sizeof(di_result.bitsnum) / sizeof(DWORD) && remainder; i++) {
5547 ULONGLONG digit = di_result.bitsnum[i] + 1;
5548 remainder = (digit > 0xFFFFFFFF) ? 1 : 0;
5549 di_result.bitsnum[i] = digit & 0xFFFFFFFF;
5553 VARIANT_DecFromDI(&di_result, pDecOut);
5555 return hRet;
5558 /************************************************************************
5559 * VarDecDiv (OLEAUT32.178)
5561 * Divide one DECIMAL by another.
5563 * PARAMS
5564 * pDecLeft [I] Source
5565 * pDecRight [I] Value to divide by
5566 * pDecOut [O] Destination
5568 * RETURNS
5569 * Success: S_OK.
5570 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
5572 HRESULT WINAPI VarDecDiv(const DECIMAL* pDecLeft, const DECIMAL* pDecRight, DECIMAL* pDecOut)
5574 if (!pDecLeft || !pDecRight || !pDecOut) return E_INVALIDARG;
5576 return VARIANT_do_division(pDecLeft, pDecRight, pDecOut, FALSE);
5579 /************************************************************************
5580 * VarDecMul (OLEAUT32.179)
5582 * Multiply one DECIMAL by another.
5584 * PARAMS
5585 * pDecLeft [I] Source
5586 * pDecRight [I] Value to multiply by
5587 * pDecOut [O] Destination
5589 * RETURNS
5590 * Success: S_OK.
5591 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
5593 HRESULT WINAPI VarDecMul(const DECIMAL* pDecLeft, const DECIMAL* pDecRight, DECIMAL* pDecOut)
5595 HRESULT hRet = S_OK;
5596 VARIANT_DI di_left, di_right, di_result;
5597 int mulresult;
5599 VARIANT_DIFromDec(pDecLeft, &di_left);
5600 VARIANT_DIFromDec(pDecRight, &di_right);
5601 mulresult = VARIANT_DI_mul(&di_left, &di_right, &di_result);
5602 if (mulresult)
5604 /* multiplication actually overflowed */
5605 hRet = DISP_E_OVERFLOW;
5607 else
5609 if (di_result.scale > DEC_MAX_SCALE)
5611 /* multiplication underflowed. In order to comply with the MSDN
5612 specifications for DECIMAL ranges, some significant digits
5613 must be removed
5615 WARN("result scale is %u, scaling (with loss of significant digits)...\n",
5616 di_result.scale);
5617 while (di_result.scale > DEC_MAX_SCALE &&
5618 !VARIANT_int_iszero(di_result.bitsnum, sizeof(di_result.bitsnum)/sizeof(DWORD)))
5620 VARIANT_int_divbychar(di_result.bitsnum, sizeof(di_result.bitsnum)/sizeof(DWORD), 10);
5621 di_result.scale--;
5623 if (di_result.scale > DEC_MAX_SCALE)
5625 WARN("result underflowed, setting to 0\n");
5626 di_result.scale = 0;
5627 di_result.sign = 0;
5630 VARIANT_DecFromDI(&di_result, pDecOut);
5632 return hRet;
5635 /************************************************************************
5636 * VarDecSub (OLEAUT32.181)
5638 * Subtract one DECIMAL from another.
5640 * PARAMS
5641 * pDecLeft [I] Source
5642 * pDecRight [I] DECIMAL to subtract from pDecLeft
5643 * pDecOut [O] Destination
5645 * RETURNS
5646 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
5648 HRESULT WINAPI VarDecSub(const DECIMAL* pDecLeft, const DECIMAL* pDecRight, DECIMAL* pDecOut)
5650 DECIMAL decRight;
5652 /* Implement as addition of the negative */
5653 VarDecNeg(pDecRight, &decRight);
5654 return VarDecAdd(pDecLeft, &decRight, pDecOut);
5657 /************************************************************************
5658 * VarDecAbs (OLEAUT32.182)
5660 * Convert a DECIMAL into its absolute value.
5662 * PARAMS
5663 * pDecIn [I] Source
5664 * pDecOut [O] Destination
5666 * RETURNS
5667 * S_OK. This function does not fail.
5669 HRESULT WINAPI VarDecAbs(const DECIMAL* pDecIn, DECIMAL* pDecOut)
5671 *pDecOut = *pDecIn;
5672 DEC_SIGN(pDecOut) &= ~DECIMAL_NEG;
5673 return S_OK;
5676 /************************************************************************
5677 * VarDecFix (OLEAUT32.187)
5679 * Return the integer portion of a DECIMAL.
5681 * PARAMS
5682 * pDecIn [I] Source
5683 * pDecOut [O] Destination
5685 * RETURNS
5686 * Success: S_OK.
5687 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
5689 * NOTES
5690 * - The difference between this function and VarDecInt() is that VarDecInt() rounds
5691 * negative numbers away from 0, while this function rounds them towards zero.
5693 HRESULT WINAPI VarDecFix(const DECIMAL* pDecIn, DECIMAL* pDecOut)
5695 double dbl;
5696 HRESULT hr;
5698 if (DEC_SIGN(pDecIn) & ~DECIMAL_NEG)
5699 return E_INVALIDARG;
5701 if (!DEC_SCALE(pDecIn))
5703 *pDecOut = *pDecIn; /* Already an integer */
5704 return S_OK;
5707 hr = VarR8FromDec(pDecIn, &dbl);
5708 if (SUCCEEDED(hr)) {
5709 LONGLONG rounded = dbl;
5711 hr = VarDecFromI8(rounded, pDecOut);
5713 return hr;
5716 /************************************************************************
5717 * VarDecInt (OLEAUT32.188)
5719 * Return the integer portion of a DECIMAL.
5721 * PARAMS
5722 * pDecIn [I] Source
5723 * pDecOut [O] Destination
5725 * RETURNS
5726 * Success: S_OK.
5727 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
5729 * NOTES
5730 * - The difference between this function and VarDecFix() is that VarDecFix() rounds
5731 * negative numbers towards 0, while this function rounds them away from zero.
5733 HRESULT WINAPI VarDecInt(const DECIMAL* pDecIn, DECIMAL* pDecOut)
5735 double dbl;
5736 HRESULT hr;
5738 if (DEC_SIGN(pDecIn) & ~DECIMAL_NEG)
5739 return E_INVALIDARG;
5741 if (!(DEC_SIGN(pDecIn) & DECIMAL_NEG) || !DEC_SCALE(pDecIn))
5742 return VarDecFix(pDecIn, pDecOut); /* The same, if +ve or no fractionals */
5744 hr = VarR8FromDec(pDecIn, &dbl);
5745 if (SUCCEEDED(hr)) {
5746 LONGLONG rounded = dbl >= 0.0 ? dbl + 0.5 : dbl - 0.5;
5748 hr = VarDecFromI8(rounded, pDecOut);
5750 return hr;
5753 /************************************************************************
5754 * VarDecNeg (OLEAUT32.189)
5756 * Change the sign of a DECIMAL.
5758 * PARAMS
5759 * pDecIn [I] Source
5760 * pDecOut [O] Destination
5762 * RETURNS
5763 * S_OK. This function does not fail.
5765 HRESULT WINAPI VarDecNeg(const DECIMAL* pDecIn, DECIMAL* pDecOut)
5767 *pDecOut = *pDecIn;
5768 DEC_SIGN(pDecOut) ^= DECIMAL_NEG;
5769 return S_OK;
5772 /************************************************************************
5773 * VarDecRound (OLEAUT32.203)
5775 * Change the precision of a DECIMAL.
5777 * PARAMS
5778 * pDecIn [I] Source
5779 * cDecimals [I] New number of decimals to keep
5780 * pDecOut [O] Destination
5782 * RETURNS
5783 * Success: S_OK. pDecOut contains the rounded value.
5784 * Failure: E_INVALIDARG if any argument is invalid.
5786 HRESULT WINAPI VarDecRound(const DECIMAL* pDecIn, int cDecimals, DECIMAL* pDecOut)
5788 DECIMAL divisor, tmp;
5789 HRESULT hr;
5790 unsigned int i;
5792 if (cDecimals < 0 || (DEC_SIGN(pDecIn) & ~DECIMAL_NEG) || DEC_SCALE(pDecIn) > DEC_MAX_SCALE)
5793 return E_INVALIDARG;
5795 if (cDecimals >= DEC_SCALE(pDecIn))
5797 *pDecOut = *pDecIn; /* More precision than we have */
5798 return S_OK;
5801 /* truncate significant digits and rescale */
5802 memset(&divisor, 0, sizeof(divisor));
5803 DEC_LO64(&divisor) = 1;
5805 memset(&tmp, 0, sizeof(tmp));
5806 DEC_LO64(&tmp) = 10;
5807 for (i = 0; i < DEC_SCALE(pDecIn) - cDecimals; ++i)
5809 hr = VarDecMul(&divisor, &tmp, &divisor);
5810 if (FAILED(hr))
5811 return hr;
5814 hr = VARIANT_do_division(pDecIn, &divisor, pDecOut, TRUE);
5815 if (FAILED(hr))
5816 return hr;
5818 DEC_SCALE(pDecOut) = cDecimals;
5820 return S_OK;
5823 /************************************************************************
5824 * VarDecCmp (OLEAUT32.204)
5826 * Compare two DECIMAL values.
5828 * PARAMS
5829 * pDecLeft [I] Source
5830 * pDecRight [I] Value to compare
5832 * RETURNS
5833 * Success: VARCMP_LT, VARCMP_EQ or VARCMP_GT indicating that pDecLeft
5834 * is less than, equal to or greater than pDecRight respectively.
5835 * Failure: DISP_E_OVERFLOW, if overflow occurs during the comparison
5837 HRESULT WINAPI VarDecCmp(const DECIMAL* pDecLeft, const DECIMAL* pDecRight)
5839 HRESULT hRet;
5840 DECIMAL result;
5842 if (!pDecLeft || !pDecRight)
5843 return VARCMP_NULL;
5845 if ((!(DEC_SIGN(pDecLeft) & DECIMAL_NEG)) && (DEC_SIGN(pDecRight) & DECIMAL_NEG) &&
5846 (DEC_HI32(pDecLeft) | DEC_MID32(pDecLeft) | DEC_LO32(pDecLeft)))
5847 return VARCMP_GT;
5848 else if ((DEC_SIGN(pDecLeft) & DECIMAL_NEG) && (!(DEC_SIGN(pDecRight) & DECIMAL_NEG)) &&
5849 (DEC_HI32(pDecLeft) | DEC_MID32(pDecLeft) | DEC_LO32(pDecLeft)))
5850 return VARCMP_LT;
5852 /* Subtract right from left, and compare the result to 0 */
5853 hRet = VarDecSub(pDecLeft, pDecRight, &result);
5855 if (SUCCEEDED(hRet))
5857 int non_zero = DEC_HI32(&result) | DEC_MID32(&result) | DEC_LO32(&result);
5859 if ((DEC_SIGN(&result) & DECIMAL_NEG) && non_zero)
5860 hRet = (HRESULT)VARCMP_LT;
5861 else if (non_zero)
5862 hRet = (HRESULT)VARCMP_GT;
5863 else
5864 hRet = (HRESULT)VARCMP_EQ;
5866 return hRet;
5869 /************************************************************************
5870 * VarDecCmpR8 (OLEAUT32.298)
5872 * Compare a DECIMAL to a double
5874 * PARAMS
5875 * pDecLeft [I] DECIMAL Source
5876 * dblRight [I] double to compare to pDecLeft
5878 * RETURNS
5879 * Success: VARCMP_LT, VARCMP_EQ or VARCMP_GT indicating that dblRight
5880 * is less than, equal to or greater than pDecLeft respectively.
5881 * Failure: DISP_E_OVERFLOW, if overflow occurs during the comparison
5883 HRESULT WINAPI VarDecCmpR8(const DECIMAL* pDecLeft, double dblRight)
5885 HRESULT hRet;
5886 DECIMAL decRight;
5888 hRet = VarDecFromR8(dblRight, &decRight);
5890 if (SUCCEEDED(hRet))
5891 hRet = VarDecCmp(pDecLeft, &decRight);
5893 return hRet;
5896 /* BOOL
5899 /************************************************************************
5900 * VarBoolFromUI1 (OLEAUT32.118)
5902 * Convert a VT_UI1 to a VT_BOOL.
5904 * PARAMS
5905 * bIn [I] Source
5906 * pBoolOut [O] Destination
5908 * RETURNS
5909 * S_OK.
5911 HRESULT WINAPI VarBoolFromUI1(BYTE bIn, VARIANT_BOOL *pBoolOut)
5913 *pBoolOut = bIn ? VARIANT_TRUE : VARIANT_FALSE;
5914 return S_OK;
5917 /************************************************************************
5918 * VarBoolFromI2 (OLEAUT32.119)
5920 * Convert a VT_I2 to a VT_BOOL.
5922 * PARAMS
5923 * sIn [I] Source
5924 * pBoolOut [O] Destination
5926 * RETURNS
5927 * S_OK.
5929 HRESULT WINAPI VarBoolFromI2(SHORT sIn, VARIANT_BOOL *pBoolOut)
5931 *pBoolOut = sIn ? VARIANT_TRUE : VARIANT_FALSE;
5932 return S_OK;
5935 /************************************************************************
5936 * VarBoolFromI4 (OLEAUT32.120)
5938 * Convert a VT_I4 to a VT_BOOL.
5940 * PARAMS
5941 * sIn [I] Source
5942 * pBoolOut [O] Destination
5944 * RETURNS
5945 * S_OK.
5947 HRESULT WINAPI VarBoolFromI4(LONG lIn, VARIANT_BOOL *pBoolOut)
5949 *pBoolOut = lIn ? VARIANT_TRUE : VARIANT_FALSE;
5950 return S_OK;
5953 /************************************************************************
5954 * VarBoolFromR4 (OLEAUT32.121)
5956 * Convert a VT_R4 to a VT_BOOL.
5958 * PARAMS
5959 * fltIn [I] Source
5960 * pBoolOut [O] Destination
5962 * RETURNS
5963 * S_OK.
5965 HRESULT WINAPI VarBoolFromR4(FLOAT fltIn, VARIANT_BOOL *pBoolOut)
5967 *pBoolOut = fltIn ? VARIANT_TRUE : VARIANT_FALSE;
5968 return S_OK;
5971 /************************************************************************
5972 * VarBoolFromR8 (OLEAUT32.122)
5974 * Convert a VT_R8 to a VT_BOOL.
5976 * PARAMS
5977 * dblIn [I] Source
5978 * pBoolOut [O] Destination
5980 * RETURNS
5981 * S_OK.
5983 HRESULT WINAPI VarBoolFromR8(double dblIn, VARIANT_BOOL *pBoolOut)
5985 *pBoolOut = dblIn ? VARIANT_TRUE : VARIANT_FALSE;
5986 return S_OK;
5989 /************************************************************************
5990 * VarBoolFromDate (OLEAUT32.123)
5992 * Convert a VT_DATE to a VT_BOOL.
5994 * PARAMS
5995 * dateIn [I] Source
5996 * pBoolOut [O] Destination
5998 * RETURNS
5999 * S_OK.
6001 HRESULT WINAPI VarBoolFromDate(DATE dateIn, VARIANT_BOOL *pBoolOut)
6003 *pBoolOut = dateIn ? VARIANT_TRUE : VARIANT_FALSE;
6004 return S_OK;
6007 /************************************************************************
6008 * VarBoolFromCy (OLEAUT32.124)
6010 * Convert a VT_CY to a VT_BOOL.
6012 * PARAMS
6013 * cyIn [I] Source
6014 * pBoolOut [O] Destination
6016 * RETURNS
6017 * S_OK.
6019 HRESULT WINAPI VarBoolFromCy(CY cyIn, VARIANT_BOOL *pBoolOut)
6021 *pBoolOut = cyIn.int64 ? VARIANT_TRUE : VARIANT_FALSE;
6022 return S_OK;
6025 /************************************************************************
6026 * VARIANT_GetLocalisedText [internal]
6028 * Get a localized string from the resources
6031 BOOL VARIANT_GetLocalisedText(LANGID langId, DWORD dwId, WCHAR *lpszDest)
6033 HRSRC hrsrc;
6035 hrsrc = FindResourceExW( hProxyDll, (LPWSTR)RT_STRING,
6036 MAKEINTRESOURCEW((dwId >> 4) + 1), langId );
6037 if (hrsrc)
6039 HGLOBAL hmem = LoadResource( hProxyDll, hrsrc );
6041 if (hmem)
6043 const WCHAR *p;
6044 unsigned int i;
6046 p = LockResource( hmem );
6047 for (i = 0; i < (dwId & 0x0f); i++) p += *p + 1;
6049 memcpy( lpszDest, p + 1, *p * sizeof(WCHAR) );
6050 lpszDest[*p] = '\0';
6051 TRACE("got %s for LANGID %08x\n", debugstr_w(lpszDest), langId);
6052 return TRUE;
6055 return FALSE;
6058 /************************************************************************
6059 * VarBoolFromStr (OLEAUT32.125)
6061 * Convert a VT_BSTR to a VT_BOOL.
6063 * PARAMS
6064 * strIn [I] Source
6065 * lcid [I] LCID for the conversion
6066 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6067 * pBoolOut [O] Destination
6069 * RETURNS
6070 * Success: S_OK.
6071 * Failure: E_INVALIDARG, if pBoolOut is invalid.
6072 * DISP_E_TYPEMISMATCH, if the type cannot be converted
6074 * NOTES
6075 * - strIn will be recognised if it contains "#TRUE#" or "#FALSE#". Additionally,
6076 * it may contain (in any case mapping) the text "true" or "false".
6077 * - If dwFlags includes VAR_LOCALBOOL, then the text may also match the
6078 * localised text of "True" or "False" in the language specified by lcid.
6079 * - If none of these matches occur, the string is treated as a numeric string
6080 * and the boolean pBoolOut will be set according to whether the number is zero
6081 * or not. The dwFlags parameter is passed to VarR8FromStr() for this conversion.
6082 * - If the text is not numeric and does not match any of the above, then
6083 * DISP_E_TYPEMISMATCH is returned.
6085 HRESULT WINAPI VarBoolFromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, VARIANT_BOOL *pBoolOut)
6087 /* Any VB/VBA programmers out there should recognise these strings... */
6088 static const WCHAR szFalse[] = { '#','F','A','L','S','E','#','\0' };
6089 static const WCHAR szTrue[] = { '#','T','R','U','E','#','\0' };
6090 WCHAR szBuff[64];
6091 LANGID langId = MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT);
6092 HRESULT hRes = S_OK;
6094 if (!strIn || !pBoolOut)
6095 return DISP_E_TYPEMISMATCH;
6097 /* Check if we should be comparing against localised text */
6098 if (dwFlags & VAR_LOCALBOOL)
6100 /* Convert our LCID into a usable value */
6101 lcid = ConvertDefaultLocale(lcid);
6103 langId = LANGIDFROMLCID(lcid);
6105 if (PRIMARYLANGID(langId) == LANG_NEUTRAL)
6106 langId = MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT);
6108 /* Note: Native oleaut32 always copies strIn and maps halfwidth characters.
6109 * I don't think this is needed unless any of the localised text strings
6110 * contain characters that can be so mapped. In the event that this is
6111 * true for a given language (possibly some Asian languages), then strIn
6112 * should be mapped here _only_ if langId is an Id for which this can occur.
6116 /* Note that if we are not comparing against localised strings, langId
6117 * will have its default value of LANG_ENGLISH. This allows us to mimic
6118 * the native behaviour of always checking against English strings even
6119 * after we've checked for localised ones.
6121 VarBoolFromStr_CheckLocalised:
6122 if (VARIANT_GetLocalisedText(langId, IDS_TRUE, szBuff))
6124 /* Compare against localised strings, ignoring case */
6125 if (!strcmpiW(strIn, szBuff))
6127 *pBoolOut = VARIANT_TRUE; /* Matched localised 'true' text */
6128 return hRes;
6130 VARIANT_GetLocalisedText(langId, IDS_FALSE, szBuff);
6131 if (!strcmpiW(strIn, szBuff))
6133 *pBoolOut = VARIANT_FALSE; /* Matched localised 'false' text */
6134 return hRes;
6138 if (langId != MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT))
6140 /* We have checked the localised text, now check English */
6141 langId = MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT);
6142 goto VarBoolFromStr_CheckLocalised;
6145 /* All checks against localised text have failed, try #TRUE#/#FALSE# */
6146 if (!strcmpW(strIn, szFalse))
6147 *pBoolOut = VARIANT_FALSE;
6148 else if (!strcmpW(strIn, szTrue))
6149 *pBoolOut = VARIANT_TRUE;
6150 else
6152 double d;
6154 /* If this string is a number, convert it as one */
6155 hRes = VarR8FromStr(strIn, lcid, dwFlags, &d);
6156 if (SUCCEEDED(hRes)) *pBoolOut = d ? VARIANT_TRUE : VARIANT_FALSE;
6158 return hRes;
6161 /************************************************************************
6162 * VarBoolFromDisp (OLEAUT32.126)
6164 * Convert a VT_DISPATCH to a VT_BOOL.
6166 * PARAMS
6167 * pdispIn [I] Source
6168 * lcid [I] LCID for conversion
6169 * pBoolOut [O] Destination
6171 * RETURNS
6172 * Success: S_OK.
6173 * Failure: E_INVALIDARG, if the source value is invalid
6174 * DISP_E_OVERFLOW, if the value will not fit in the destination
6175 * DISP_E_TYPEMISMATCH, if the type cannot be converted
6177 HRESULT WINAPI VarBoolFromDisp(IDispatch* pdispIn, LCID lcid, VARIANT_BOOL *pBoolOut)
6179 return VARIANT_FromDisp(pdispIn, lcid, pBoolOut, VT_BOOL, 0);
6182 /************************************************************************
6183 * VarBoolFromI1 (OLEAUT32.233)
6185 * Convert a VT_I1 to a VT_BOOL.
6187 * PARAMS
6188 * cIn [I] Source
6189 * pBoolOut [O] Destination
6191 * RETURNS
6192 * S_OK.
6194 HRESULT WINAPI VarBoolFromI1(signed char cIn, VARIANT_BOOL *pBoolOut)
6196 *pBoolOut = cIn ? VARIANT_TRUE : VARIANT_FALSE;
6197 return S_OK;
6200 /************************************************************************
6201 * VarBoolFromUI2 (OLEAUT32.234)
6203 * Convert a VT_UI2 to a VT_BOOL.
6205 * PARAMS
6206 * usIn [I] Source
6207 * pBoolOut [O] Destination
6209 * RETURNS
6210 * S_OK.
6212 HRESULT WINAPI VarBoolFromUI2(USHORT usIn, VARIANT_BOOL *pBoolOut)
6214 *pBoolOut = usIn ? VARIANT_TRUE : VARIANT_FALSE;
6215 return S_OK;
6218 /************************************************************************
6219 * VarBoolFromUI4 (OLEAUT32.235)
6221 * Convert a VT_UI4 to a VT_BOOL.
6223 * PARAMS
6224 * ulIn [I] Source
6225 * pBoolOut [O] Destination
6227 * RETURNS
6228 * S_OK.
6230 HRESULT WINAPI VarBoolFromUI4(ULONG ulIn, VARIANT_BOOL *pBoolOut)
6232 *pBoolOut = ulIn ? VARIANT_TRUE : VARIANT_FALSE;
6233 return S_OK;
6236 /************************************************************************
6237 * VarBoolFromDec (OLEAUT32.236)
6239 * Convert a VT_DECIMAL to a VT_BOOL.
6241 * PARAMS
6242 * pDecIn [I] Source
6243 * pBoolOut [O] Destination
6245 * RETURNS
6246 * Success: S_OK.
6247 * Failure: E_INVALIDARG, if pDecIn is invalid.
6249 HRESULT WINAPI VarBoolFromDec(DECIMAL* pDecIn, VARIANT_BOOL *pBoolOut)
6251 if (DEC_SCALE(pDecIn) > DEC_MAX_SCALE || (DEC_SIGN(pDecIn) & ~DECIMAL_NEG))
6252 return E_INVALIDARG;
6254 if (DEC_HI32(pDecIn) || DEC_MID32(pDecIn) || DEC_LO32(pDecIn))
6255 *pBoolOut = VARIANT_TRUE;
6256 else
6257 *pBoolOut = VARIANT_FALSE;
6258 return S_OK;
6261 /************************************************************************
6262 * VarBoolFromI8 (OLEAUT32.370)
6264 * Convert a VT_I8 to a VT_BOOL.
6266 * PARAMS
6267 * ullIn [I] Source
6268 * pBoolOut [O] Destination
6270 * RETURNS
6271 * S_OK.
6273 HRESULT WINAPI VarBoolFromI8(LONG64 llIn, VARIANT_BOOL *pBoolOut)
6275 *pBoolOut = llIn ? VARIANT_TRUE : VARIANT_FALSE;
6276 return S_OK;
6279 /************************************************************************
6280 * VarBoolFromUI8 (OLEAUT32.371)
6282 * Convert a VT_UI8 to a VT_BOOL.
6284 * PARAMS
6285 * ullIn [I] Source
6286 * pBoolOut [O] Destination
6288 * RETURNS
6289 * S_OK.
6291 HRESULT WINAPI VarBoolFromUI8(ULONG64 ullIn, VARIANT_BOOL *pBoolOut)
6293 *pBoolOut = ullIn ? VARIANT_TRUE : VARIANT_FALSE;
6294 return S_OK;
6297 /* BSTR
6300 /* Write a number from a UI8 and sign */
6301 static WCHAR *VARIANT_WriteNumber(ULONG64 ulVal, WCHAR* szOut)
6305 WCHAR ulNextDigit = ulVal % 10;
6307 *szOut-- = '0' + ulNextDigit;
6308 ulVal = (ulVal - ulNextDigit) / 10;
6309 } while (ulVal);
6311 szOut++;
6312 return szOut;
6315 /* Create a (possibly localised) BSTR from a UI8 and sign */
6316 static BSTR VARIANT_MakeBstr(LCID lcid, DWORD dwFlags, WCHAR *szOut)
6318 WCHAR szConverted[256];
6320 if (dwFlags & VAR_NEGATIVE)
6321 *--szOut = '-';
6323 if (dwFlags & LOCALE_USE_NLS)
6325 /* Format the number for the locale */
6326 szConverted[0] = '\0';
6327 GetNumberFormatW(lcid,
6328 dwFlags & LOCALE_NOUSEROVERRIDE,
6329 szOut, NULL, szConverted, sizeof(szConverted)/sizeof(WCHAR));
6330 szOut = szConverted;
6332 return SysAllocStringByteLen((LPCSTR)szOut, strlenW(szOut) * sizeof(WCHAR));
6335 /* Create a (possibly localised) BSTR from a UI8 and sign */
6336 static HRESULT VARIANT_BstrFromUInt(ULONG64 ulVal, LCID lcid, DWORD dwFlags, BSTR *pbstrOut)
6338 WCHAR szBuff[64], *szOut = szBuff + sizeof(szBuff)/sizeof(WCHAR) - 1;
6340 if (!pbstrOut)
6341 return E_INVALIDARG;
6343 /* Create the basic number string */
6344 *szOut-- = '\0';
6345 szOut = VARIANT_WriteNumber(ulVal, szOut);
6347 *pbstrOut = VARIANT_MakeBstr(lcid, dwFlags, szOut);
6348 TRACE("returning %s\n", debugstr_w(*pbstrOut));
6349 return *pbstrOut ? S_OK : E_OUTOFMEMORY;
6352 /******************************************************************************
6353 * VarBstrFromUI1 (OLEAUT32.108)
6355 * Convert a VT_UI1 to a VT_BSTR.
6357 * PARAMS
6358 * bIn [I] Source
6359 * lcid [I] LCID for the conversion
6360 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6361 * pbstrOut [O] Destination
6363 * RETURNS
6364 * Success: S_OK.
6365 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6366 * E_OUTOFMEMORY, if memory allocation fails.
6368 HRESULT WINAPI VarBstrFromUI1(BYTE bIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6370 return VARIANT_BstrFromUInt(bIn, lcid, dwFlags, pbstrOut);
6373 /******************************************************************************
6374 * VarBstrFromI2 (OLEAUT32.109)
6376 * Convert a VT_I2 to a VT_BSTR.
6378 * PARAMS
6379 * sIn [I] Source
6380 * lcid [I] LCID for the conversion
6381 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6382 * pbstrOut [O] Destination
6384 * RETURNS
6385 * Success: S_OK.
6386 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6387 * E_OUTOFMEMORY, if memory allocation fails.
6389 HRESULT WINAPI VarBstrFromI2(short sIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6391 ULONG64 ul64 = sIn;
6393 if (sIn < 0)
6395 ul64 = -sIn;
6396 dwFlags |= VAR_NEGATIVE;
6398 return VARIANT_BstrFromUInt(ul64, lcid, dwFlags, pbstrOut);
6401 /******************************************************************************
6402 * VarBstrFromI4 (OLEAUT32.110)
6404 * Convert a VT_I4 to a VT_BSTR.
6406 * PARAMS
6407 * lIn [I] Source
6408 * lcid [I] LCID for the conversion
6409 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6410 * pbstrOut [O] Destination
6412 * RETURNS
6413 * Success: S_OK.
6414 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6415 * E_OUTOFMEMORY, if memory allocation fails.
6417 HRESULT WINAPI VarBstrFromI4(LONG lIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6419 ULONG64 ul64 = lIn;
6421 if (lIn < 0)
6423 ul64 = (ULONG)-lIn;
6424 dwFlags |= VAR_NEGATIVE;
6426 return VARIANT_BstrFromUInt(ul64, lcid, dwFlags, pbstrOut);
6429 static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFlags)
6431 BSTR bstrOut;
6432 WCHAR lpDecimalSep[16];
6434 /* Native oleaut32 uses the locale-specific decimal separator even in the
6435 absence of the LOCALE_USE_NLS flag. For example, the Spanish/Latin
6436 American locales will see "one thousand and one tenth" as "1000,1"
6437 instead of "1000.1" (notice the comma). The following code checks for
6438 the need to replace the decimal separator, and if so, will prepare an
6439 appropriate NUMBERFMTW structure to do the job via GetNumberFormatW().
6441 GetLocaleInfoW(lcid, LOCALE_SDECIMAL | (dwFlags & LOCALE_NOUSEROVERRIDE),
6442 lpDecimalSep, sizeof(lpDecimalSep) / sizeof(WCHAR));
6443 if (lpDecimalSep[0] == '.' && lpDecimalSep[1] == '\0')
6445 /* locale is compatible with English - return original string */
6446 bstrOut = SysAllocString(buff);
6448 else
6450 WCHAR *p;
6451 WCHAR numbuff[256];
6452 WCHAR empty[] = {'\0'};
6453 NUMBERFMTW minFormat;
6455 minFormat.NumDigits = 0;
6456 minFormat.LeadingZero = 0;
6457 minFormat.Grouping = 0;
6458 minFormat.lpDecimalSep = lpDecimalSep;
6459 minFormat.lpThousandSep = empty;
6460 minFormat.NegativeOrder = 1; /* NLS_NEG_LEFT */
6462 /* count number of decimal digits in string */
6463 p = strchrW( buff, '.' );
6464 if (p) minFormat.NumDigits = strlenW(p + 1);
6466 numbuff[0] = '\0';
6467 if (!GetNumberFormatW(lcid, 0, buff, &minFormat, numbuff, sizeof(numbuff) / sizeof(WCHAR)))
6469 WARN("GetNumberFormatW() failed, returning raw number string instead\n");
6470 bstrOut = SysAllocString(buff);
6472 else
6474 TRACE("created minimal NLS string %s\n", debugstr_w(numbuff));
6475 bstrOut = SysAllocString(numbuff);
6478 return bstrOut;
6481 static HRESULT VARIANT_BstrFromReal(DOUBLE dblIn, LCID lcid, ULONG dwFlags,
6482 BSTR* pbstrOut, LPCWSTR lpszFormat)
6484 WCHAR buff[256];
6486 if (!pbstrOut)
6487 return E_INVALIDARG;
6489 sprintfW( buff, lpszFormat, dblIn );
6491 /* Negative zeroes are disallowed (some applications depend on this).
6492 If buff starts with a minus, and then nothing follows but zeroes
6493 and/or a period, it is a negative zero and is replaced with a
6494 canonical zero. This duplicates native oleaut32 behavior.
6496 if (buff[0] == '-')
6498 const WCHAR szAccept[] = {'0', '.', '\0'};
6499 if (strlenW(buff + 1) == strspnW(buff + 1, szAccept))
6500 { buff[0] = '0'; buff[1] = '\0'; }
6503 TRACE("created string %s\n", debugstr_w(buff));
6504 if (dwFlags & LOCALE_USE_NLS)
6506 WCHAR numbuff[256];
6508 /* Format the number for the locale */
6509 numbuff[0] = '\0';
6510 GetNumberFormatW(lcid, dwFlags & LOCALE_NOUSEROVERRIDE,
6511 buff, NULL, numbuff, sizeof(numbuff) / sizeof(WCHAR));
6512 TRACE("created NLS string %s\n", debugstr_w(numbuff));
6513 *pbstrOut = SysAllocString(numbuff);
6515 else
6517 *pbstrOut = VARIANT_BstrReplaceDecimal(buff, lcid, dwFlags);
6519 return *pbstrOut ? S_OK : E_OUTOFMEMORY;
6522 /******************************************************************************
6523 * VarBstrFromR4 (OLEAUT32.111)
6525 * Convert a VT_R4 to a VT_BSTR.
6527 * PARAMS
6528 * fltIn [I] Source
6529 * lcid [I] LCID for the conversion
6530 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6531 * pbstrOut [O] Destination
6533 * RETURNS
6534 * Success: S_OK.
6535 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6536 * E_OUTOFMEMORY, if memory allocation fails.
6538 HRESULT WINAPI VarBstrFromR4(FLOAT fltIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6540 return VARIANT_BstrFromReal(fltIn, lcid, dwFlags, pbstrOut, szFloatFormatW);
6543 /******************************************************************************
6544 * VarBstrFromR8 (OLEAUT32.112)
6546 * Convert a VT_R8 to a VT_BSTR.
6548 * PARAMS
6549 * dblIn [I] Source
6550 * lcid [I] LCID for the conversion
6551 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6552 * pbstrOut [O] Destination
6554 * RETURNS
6555 * Success: S_OK.
6556 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6557 * E_OUTOFMEMORY, if memory allocation fails.
6559 HRESULT WINAPI VarBstrFromR8(double dblIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6561 return VARIANT_BstrFromReal(dblIn, lcid, dwFlags, pbstrOut, szDoubleFormatW);
6564 /******************************************************************************
6565 * VarBstrFromCy [OLEAUT32.113]
6567 * Convert a VT_CY to a VT_BSTR.
6569 * PARAMS
6570 * cyIn [I] Source
6571 * lcid [I] LCID for the conversion
6572 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6573 * pbstrOut [O] Destination
6575 * RETURNS
6576 * Success: S_OK.
6577 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6578 * E_OUTOFMEMORY, if memory allocation fails.
6580 HRESULT WINAPI VarBstrFromCy(CY cyIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut)
6582 WCHAR buff[256];
6583 VARIANT_DI decVal;
6585 if (!pbstrOut)
6586 return E_INVALIDARG;
6588 decVal.scale = 4;
6589 decVal.sign = 0;
6590 decVal.bitsnum[0] = cyIn.s.Lo;
6591 decVal.bitsnum[1] = cyIn.s.Hi;
6592 if (cyIn.s.Hi & 0x80000000UL) {
6593 DWORD one = 1;
6595 /* Negative number! */
6596 decVal.sign = 1;
6597 decVal.bitsnum[0] = ~decVal.bitsnum[0];
6598 decVal.bitsnum[1] = ~decVal.bitsnum[1];
6599 VARIANT_int_add(decVal.bitsnum, 3, &one, 1);
6601 decVal.bitsnum[2] = 0;
6602 VARIANT_DI_tostringW(&decVal, buff, sizeof(buff)/sizeof(buff[0]));
6604 if (dwFlags & LOCALE_USE_NLS)
6606 WCHAR cybuff[256];
6608 /* Format the currency for the locale */
6609 cybuff[0] = '\0';
6610 GetCurrencyFormatW(lcid, dwFlags & LOCALE_NOUSEROVERRIDE,
6611 buff, NULL, cybuff, sizeof(cybuff) / sizeof(WCHAR));
6612 *pbstrOut = SysAllocString(cybuff);
6614 else
6615 *pbstrOut = VARIANT_BstrReplaceDecimal(buff,lcid,dwFlags);
6617 return *pbstrOut ? S_OK : E_OUTOFMEMORY;
6620 static inline int output_int_len(int o, int min_len, WCHAR *date, int date_len)
6622 int len, tmp;
6624 if(min_len >= date_len)
6625 return -1;
6627 for(len=0, tmp=o; tmp; tmp/=10) len++;
6628 if(!len) len++;
6629 if(len >= date_len)
6630 return -1;
6632 for(tmp=min_len-len; tmp>0; tmp--)
6633 *date++ = '0';
6634 for(tmp=len; tmp>0; tmp--, o/=10)
6635 date[tmp-1] = '0' + o%10;
6636 return min_len>len ? min_len : len;
6639 /* format date string, similar to GetDateFormatW function but works on bigger range of dates */
6640 BOOL get_date_format(LCID lcid, DWORD flags, const SYSTEMTIME *st,
6641 const WCHAR *fmt, WCHAR *date, int date_len)
6643 static const LCTYPE dayname[] = {
6644 LOCALE_SDAYNAME7, LOCALE_SDAYNAME1, LOCALE_SDAYNAME2, LOCALE_SDAYNAME3,
6645 LOCALE_SDAYNAME4, LOCALE_SDAYNAME5, LOCALE_SDAYNAME6
6647 static const LCTYPE sdayname[] = {
6648 LOCALE_SABBREVDAYNAME7, LOCALE_SABBREVDAYNAME1, LOCALE_SABBREVDAYNAME2,
6649 LOCALE_SABBREVDAYNAME3, LOCALE_SABBREVDAYNAME4, LOCALE_SABBREVDAYNAME5,
6650 LOCALE_SABBREVDAYNAME6
6652 static const LCTYPE monthname[] = {
6653 LOCALE_SMONTHNAME1, LOCALE_SMONTHNAME2, LOCALE_SMONTHNAME3, LOCALE_SMONTHNAME4,
6654 LOCALE_SMONTHNAME5, LOCALE_SMONTHNAME6, LOCALE_SMONTHNAME7, LOCALE_SMONTHNAME8,
6655 LOCALE_SMONTHNAME9, LOCALE_SMONTHNAME10, LOCALE_SMONTHNAME11, LOCALE_SMONTHNAME12
6657 static const LCTYPE smonthname[] = {
6658 LOCALE_SABBREVMONTHNAME1, LOCALE_SABBREVMONTHNAME2, LOCALE_SABBREVMONTHNAME3,
6659 LOCALE_SABBREVMONTHNAME4, LOCALE_SABBREVMONTHNAME5, LOCALE_SABBREVMONTHNAME6,
6660 LOCALE_SABBREVMONTHNAME7, LOCALE_SABBREVMONTHNAME8, LOCALE_SABBREVMONTHNAME9,
6661 LOCALE_SABBREVMONTHNAME10, LOCALE_SABBREVMONTHNAME11, LOCALE_SABBREVMONTHNAME12
6664 if(flags & ~(LOCALE_NOUSEROVERRIDE|VAR_DATEVALUEONLY))
6665 FIXME("ignoring flags %x\n", flags);
6666 flags &= LOCALE_NOUSEROVERRIDE;
6668 while(*fmt && date_len) {
6669 int count = 1;
6671 switch(*fmt) {
6672 case 'd':
6673 case 'M':
6674 case 'y':
6675 case 'g':
6676 while(*fmt == *(fmt+count))
6677 count++;
6678 fmt += count-1;
6681 switch(*fmt) {
6682 case 'd':
6683 if(count >= 4)
6684 count = GetLocaleInfoW(lcid, dayname[st->wDayOfWeek] | flags, date, date_len)-1;
6685 else if(count == 3)
6686 count = GetLocaleInfoW(lcid, sdayname[st->wDayOfWeek] | flags, date, date_len)-1;
6687 else
6688 count = output_int_len(st->wDay, count, date, date_len);
6689 break;
6690 case 'M':
6691 if(count >= 4)
6692 count = GetLocaleInfoW(lcid, monthname[st->wMonth-1] | flags, date, date_len)-1;
6693 else if(count == 3)
6694 count = GetLocaleInfoW(lcid, smonthname[st->wMonth-1] | flags, date, date_len)-1;
6695 else
6696 count = output_int_len(st->wMonth, count, date, date_len);
6697 break;
6698 case 'y':
6699 if(count >= 3)
6700 count = output_int_len(st->wYear, 0, date, date_len);
6701 else
6702 count = output_int_len(st->wYear%100, count, date, date_len);
6703 break;
6704 case 'g':
6705 if(count == 2) {
6706 FIXME("Should be using GetCalendarInfo(CAL_SERASTRING), defaulting to 'AD'\n");
6708 *date++ = 'A';
6709 date_len--;
6710 if(date_len)
6711 *date = 'D';
6712 else
6713 count = -1;
6714 break;
6716 /* fall through */
6717 default:
6718 *date = *fmt;
6721 if(count < 0)
6722 break;
6723 fmt++;
6724 date += count;
6725 date_len -= count;
6728 if(!date_len)
6729 return FALSE;
6730 *date++ = 0;
6731 return TRUE;
6734 /******************************************************************************
6735 * VarBstrFromDate [OLEAUT32.114]
6737 * Convert a VT_DATE to a VT_BSTR.
6739 * PARAMS
6740 * dateIn [I] Source
6741 * lcid [I] LCID for the conversion
6742 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6743 * pbstrOut [O] Destination
6745 * RETURNS
6746 * Success: S_OK.
6747 * Failure: E_INVALIDARG, if pbstrOut or dateIn is invalid.
6748 * E_OUTOFMEMORY, if memory allocation fails.
6750 HRESULT WINAPI VarBstrFromDate(DATE dateIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6752 SYSTEMTIME st;
6753 DWORD dwFormatFlags = dwFlags & LOCALE_NOUSEROVERRIDE;
6754 WCHAR date[128], fmt_buff[80], *time;
6756 TRACE("(%g,0x%08x,0x%08x,%p)\n", dateIn, lcid, dwFlags, pbstrOut);
6758 if (!pbstrOut || !VariantTimeToSystemTime(dateIn, &st))
6759 return E_INVALIDARG;
6761 *pbstrOut = NULL;
6763 if (dwFlags & VAR_CALENDAR_THAI)
6764 st.wYear += 553; /* Use the Thai buddhist calendar year */
6765 else if (dwFlags & (VAR_CALENDAR_HIJRI|VAR_CALENDAR_GREGORIAN))
6766 FIXME("VAR_CALENDAR_HIJRI/VAR_CALENDAR_GREGORIAN not handled\n");
6768 if (dwFlags & LOCALE_USE_NLS)
6769 dwFlags &= ~(VAR_TIMEVALUEONLY|VAR_DATEVALUEONLY);
6770 else
6772 double whole = dateIn < 0 ? ceil(dateIn) : floor(dateIn);
6773 double partial = dateIn - whole;
6775 if (whole == 0.0)
6776 dwFlags |= VAR_TIMEVALUEONLY;
6777 else if (partial > -1e-12 && partial < 1e-12)
6778 dwFlags |= VAR_DATEVALUEONLY;
6781 if (dwFlags & VAR_TIMEVALUEONLY)
6782 date[0] = '\0';
6783 else
6784 if (!GetLocaleInfoW(lcid, LOCALE_SSHORTDATE, fmt_buff, sizeof(fmt_buff)/sizeof(WCHAR)) ||
6785 !get_date_format(lcid, dwFlags, &st, fmt_buff, date, sizeof(date)/sizeof(WCHAR)))
6786 return E_INVALIDARG;
6788 if (!(dwFlags & VAR_DATEVALUEONLY))
6790 time = date + strlenW(date);
6791 if (time != date)
6792 *time++ = ' ';
6793 if (!GetTimeFormatW(lcid, dwFormatFlags, &st, NULL, time,
6794 sizeof(date)/sizeof(WCHAR)-(time-date)))
6795 return E_INVALIDARG;
6798 *pbstrOut = SysAllocString(date);
6799 if (*pbstrOut)
6800 TRACE("returning %s\n", debugstr_w(*pbstrOut));
6801 return *pbstrOut ? S_OK : E_OUTOFMEMORY;
6804 /******************************************************************************
6805 * VarBstrFromBool (OLEAUT32.116)
6807 * Convert a VT_BOOL to a VT_BSTR.
6809 * PARAMS
6810 * boolIn [I] Source
6811 * lcid [I] LCID for the conversion
6812 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6813 * pbstrOut [O] Destination
6815 * RETURNS
6816 * Success: S_OK.
6817 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6818 * E_OUTOFMEMORY, if memory allocation fails.
6820 * NOTES
6821 * If dwFlags includes VARIANT_LOCALBOOL, this function converts to the
6822 * localised text of "True" or "False". To convert a bool into a
6823 * numeric string of "0" or "-1", use VariantChangeTypeTypeEx().
6825 HRESULT WINAPI VarBstrFromBool(VARIANT_BOOL boolIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6827 WCHAR szBuff[64];
6828 DWORD dwResId = IDS_TRUE;
6829 LANGID langId;
6831 TRACE("%d,0x%08x,0x%08x,%p\n", boolIn, lcid, dwFlags, pbstrOut);
6833 if (!pbstrOut)
6834 return E_INVALIDARG;
6836 /* VAR_BOOLONOFF and VAR_BOOLYESNO are internal flags used
6837 * for variant formatting */
6838 switch (dwFlags & (VAR_LOCALBOOL|VAR_BOOLONOFF|VAR_BOOLYESNO))
6840 case VAR_BOOLONOFF:
6841 dwResId = IDS_ON;
6842 break;
6843 case VAR_BOOLYESNO:
6844 dwResId = IDS_YES;
6845 break;
6846 case VAR_LOCALBOOL:
6847 break;
6848 default:
6849 lcid = MAKELCID(MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT),SORT_DEFAULT);
6852 lcid = ConvertDefaultLocale(lcid);
6853 langId = LANGIDFROMLCID(lcid);
6854 if (PRIMARYLANGID(langId) == LANG_NEUTRAL)
6855 langId = MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT);
6857 if (boolIn == VARIANT_FALSE)
6858 dwResId++; /* Use negative form */
6860 VarBstrFromBool_GetLocalised:
6861 if (VARIANT_GetLocalisedText(langId, dwResId, szBuff))
6863 *pbstrOut = SysAllocString(szBuff);
6864 return *pbstrOut ? S_OK : E_OUTOFMEMORY;
6867 if (langId != MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT))
6869 langId = MAKELANGID(LANG_ENGLISH, SUBLANG_DEFAULT);
6870 goto VarBstrFromBool_GetLocalised;
6873 /* Should never get here */
6874 WARN("Failed to load bool text!\n");
6875 return E_OUTOFMEMORY;
6878 /******************************************************************************
6879 * VarBstrFromI1 (OLEAUT32.229)
6881 * Convert a VT_I1 to a VT_BSTR.
6883 * PARAMS
6884 * cIn [I] Source
6885 * lcid [I] LCID for the conversion
6886 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6887 * pbstrOut [O] Destination
6889 * RETURNS
6890 * Success: S_OK.
6891 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6892 * E_OUTOFMEMORY, if memory allocation fails.
6894 HRESULT WINAPI VarBstrFromI1(signed char cIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6896 ULONG64 ul64 = cIn;
6898 if (cIn < 0)
6900 ul64 = -cIn;
6901 dwFlags |= VAR_NEGATIVE;
6903 return VARIANT_BstrFromUInt(ul64, lcid, dwFlags, pbstrOut);
6906 /******************************************************************************
6907 * VarBstrFromUI2 (OLEAUT32.230)
6909 * Convert a VT_UI2 to a VT_BSTR.
6911 * PARAMS
6912 * usIn [I] Source
6913 * lcid [I] LCID for the conversion
6914 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6915 * pbstrOut [O] Destination
6917 * RETURNS
6918 * Success: S_OK.
6919 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6920 * E_OUTOFMEMORY, if memory allocation fails.
6922 HRESULT WINAPI VarBstrFromUI2(USHORT usIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6924 return VARIANT_BstrFromUInt(usIn, lcid, dwFlags, pbstrOut);
6927 /******************************************************************************
6928 * VarBstrFromUI4 (OLEAUT32.231)
6930 * Convert a VT_UI4 to a VT_BSTR.
6932 * PARAMS
6933 * ulIn [I] Source
6934 * lcid [I] LCID for the conversion
6935 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6936 * pbstrOut [O] Destination
6938 * RETURNS
6939 * Success: S_OK.
6940 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6941 * E_OUTOFMEMORY, if memory allocation fails.
6943 HRESULT WINAPI VarBstrFromUI4(ULONG ulIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6945 return VARIANT_BstrFromUInt(ulIn, lcid, dwFlags, pbstrOut);
6948 /******************************************************************************
6949 * VarBstrFromDec (OLEAUT32.232)
6951 * Convert a VT_DECIMAL to a VT_BSTR.
6953 * PARAMS
6954 * pDecIn [I] Source
6955 * lcid [I] LCID for the conversion
6956 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
6957 * pbstrOut [O] Destination
6959 * RETURNS
6960 * Success: S_OK.
6961 * Failure: E_INVALIDARG, if pbstrOut is invalid.
6962 * E_OUTOFMEMORY, if memory allocation fails.
6964 HRESULT WINAPI VarBstrFromDec(DECIMAL* pDecIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
6966 WCHAR buff[256];
6967 VARIANT_DI temp;
6969 if (!pbstrOut)
6970 return E_INVALIDARG;
6972 VARIANT_DIFromDec(pDecIn, &temp);
6973 VARIANT_DI_tostringW(&temp, buff, 256);
6975 if (dwFlags & LOCALE_USE_NLS)
6977 WCHAR numbuff[256];
6979 /* Format the number for the locale */
6980 numbuff[0] = '\0';
6981 GetNumberFormatW(lcid, dwFlags & LOCALE_NOUSEROVERRIDE,
6982 buff, NULL, numbuff, sizeof(numbuff) / sizeof(WCHAR));
6983 TRACE("created NLS string %s\n", debugstr_w(numbuff));
6984 *pbstrOut = SysAllocString(numbuff);
6986 else
6988 *pbstrOut = VARIANT_BstrReplaceDecimal(buff, lcid, dwFlags);
6991 TRACE("returning %s\n", debugstr_w(*pbstrOut));
6992 return *pbstrOut ? S_OK : E_OUTOFMEMORY;
6995 /************************************************************************
6996 * VarBstrFromI8 (OLEAUT32.370)
6998 * Convert a VT_I8 to a VT_BSTR.
7000 * PARAMS
7001 * llIn [I] Source
7002 * lcid [I] LCID for the conversion
7003 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
7004 * pbstrOut [O] Destination
7006 * RETURNS
7007 * Success: S_OK.
7008 * Failure: E_INVALIDARG, if pbstrOut is invalid.
7009 * E_OUTOFMEMORY, if memory allocation fails.
7011 HRESULT WINAPI VarBstrFromI8(LONG64 llIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
7013 ULONG64 ul64 = llIn;
7015 if (llIn < 0)
7017 ul64 = -llIn;
7018 dwFlags |= VAR_NEGATIVE;
7020 return VARIANT_BstrFromUInt(ul64, lcid, dwFlags, pbstrOut);
7023 /************************************************************************
7024 * VarBstrFromUI8 (OLEAUT32.371)
7026 * Convert a VT_UI8 to a VT_BSTR.
7028 * PARAMS
7029 * ullIn [I] Source
7030 * lcid [I] LCID for the conversion
7031 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
7032 * pbstrOut [O] Destination
7034 * RETURNS
7035 * Success: S_OK.
7036 * Failure: E_INVALIDARG, if pbstrOut is invalid.
7037 * E_OUTOFMEMORY, if memory allocation fails.
7039 HRESULT WINAPI VarBstrFromUI8(ULONG64 ullIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
7041 return VARIANT_BstrFromUInt(ullIn, lcid, dwFlags, pbstrOut);
7044 /************************************************************************
7045 * VarBstrFromDisp (OLEAUT32.115)
7047 * Convert a VT_DISPATCH to a BSTR.
7049 * PARAMS
7050 * pdispIn [I] Source
7051 * lcid [I] LCID for conversion
7052 * dwFlags [I] Flags controlling the conversion (VAR_ flags from "oleauto.h")
7053 * pbstrOut [O] Destination
7055 * RETURNS
7056 * Success: S_OK.
7057 * Failure: E_INVALIDARG, if the source value is invalid
7058 * DISP_E_TYPEMISMATCH, if the type cannot be converted
7060 HRESULT WINAPI VarBstrFromDisp(IDispatch* pdispIn, LCID lcid, ULONG dwFlags, BSTR* pbstrOut)
7062 return VARIANT_FromDisp(pdispIn, lcid, pbstrOut, VT_BSTR, dwFlags);
7065 /**********************************************************************
7066 * VarBstrCat (OLEAUT32.313)
7068 * Concatenate two BSTR values.
7070 * PARAMS
7071 * pbstrLeft [I] Source
7072 * pbstrRight [I] Value to concatenate
7073 * pbstrOut [O] Destination
7075 * RETURNS
7076 * Success: S_OK.
7077 * Failure: E_INVALIDARG, if pbstrOut is invalid.
7078 * E_OUTOFMEMORY, if memory allocation fails.
7080 HRESULT WINAPI VarBstrCat(BSTR pbstrLeft, BSTR pbstrRight, BSTR *pbstrOut)
7082 unsigned int lenLeft, lenRight;
7084 TRACE("%s,%s,%p\n",
7085 debugstr_wn(pbstrLeft, SysStringLen(pbstrLeft)),
7086 debugstr_wn(pbstrRight, SysStringLen(pbstrRight)), pbstrOut);
7088 if (!pbstrOut)
7089 return E_INVALIDARG;
7091 /* use byte length here to properly handle ansi-allocated BSTRs */
7092 lenLeft = pbstrLeft ? SysStringByteLen(pbstrLeft) : 0;
7093 lenRight = pbstrRight ? SysStringByteLen(pbstrRight) : 0;
7095 *pbstrOut = SysAllocStringByteLen(NULL, lenLeft + lenRight);
7096 if (!*pbstrOut)
7097 return E_OUTOFMEMORY;
7099 (*pbstrOut)[0] = '\0';
7101 if (pbstrLeft)
7102 memcpy(*pbstrOut, pbstrLeft, lenLeft);
7104 if (pbstrRight)
7105 memcpy((CHAR*)*pbstrOut + lenLeft, pbstrRight, lenRight);
7107 TRACE("%s\n", debugstr_wn(*pbstrOut, SysStringLen(*pbstrOut)));
7108 return S_OK;
7111 /**********************************************************************
7112 * VarBstrCmp (OLEAUT32.314)
7114 * Compare two BSTR values.
7116 * PARAMS
7117 * pbstrLeft [I] Source
7118 * pbstrRight [I] Value to compare
7119 * lcid [I] LCID for the comparison
7120 * dwFlags [I] Flags to pass directly to CompareStringW().
7122 * RETURNS
7123 * VARCMP_LT, VARCMP_EQ or VARCMP_GT indicating that pbstrLeft is less
7124 * than, equal to or greater than pbstrRight respectively.
7126 * NOTES
7127 * VARCMP_NULL is NOT returned if either string is NULL unlike MSDN
7128 * states. A NULL BSTR pointer is equivalent to an empty string.
7129 * If LCID is equal to 0, a byte by byte comparison is performed.
7131 HRESULT WINAPI VarBstrCmp(BSTR pbstrLeft, BSTR pbstrRight, LCID lcid, DWORD dwFlags)
7133 HRESULT hres;
7134 int ret;
7136 TRACE("%s,%s,%d,%08x\n",
7137 debugstr_wn(pbstrLeft, SysStringLen(pbstrLeft)),
7138 debugstr_wn(pbstrRight, SysStringLen(pbstrRight)), lcid, dwFlags);
7140 if (!pbstrLeft || !*pbstrLeft)
7142 if (pbstrRight && *pbstrRight)
7143 return VARCMP_LT;
7145 else if (!pbstrRight || !*pbstrRight)
7146 return VARCMP_GT;
7148 if (lcid == 0)
7150 unsigned int lenLeft = SysStringByteLen(pbstrLeft);
7151 unsigned int lenRight = SysStringByteLen(pbstrRight);
7152 ret = memcmp(pbstrLeft, pbstrRight, min(lenLeft, lenRight));
7153 if (ret < 0)
7154 return VARCMP_LT;
7155 if (ret > 0)
7156 return VARCMP_GT;
7157 if (lenLeft < lenRight)
7158 return VARCMP_LT;
7159 if (lenLeft > lenRight)
7160 return VARCMP_GT;
7161 return VARCMP_EQ;
7163 else
7165 unsigned int lenLeft = SysStringLen(pbstrLeft);
7166 unsigned int lenRight = SysStringLen(pbstrRight);
7168 if (lenLeft == 0 || lenRight == 0)
7170 if (lenLeft == 0 && lenRight == 0) return VARCMP_EQ;
7171 return lenLeft < lenRight ? VARCMP_LT : VARCMP_GT;
7174 hres = CompareStringW(lcid, dwFlags, pbstrLeft, lenLeft,
7175 pbstrRight, lenRight) - CSTR_LESS_THAN;
7176 TRACE("%d\n", hres);
7177 return hres;
7182 * DATE
7185 /******************************************************************************
7186 * VarDateFromUI1 (OLEAUT32.88)
7188 * Convert a VT_UI1 to a VT_DATE.
7190 * PARAMS
7191 * bIn [I] Source
7192 * pdateOut [O] Destination
7194 * RETURNS
7195 * S_OK.
7197 HRESULT WINAPI VarDateFromUI1(BYTE bIn, DATE* pdateOut)
7199 return VarR8FromUI1(bIn, pdateOut);
7202 /******************************************************************************
7203 * VarDateFromI2 (OLEAUT32.89)
7205 * Convert a VT_I2 to a VT_DATE.
7207 * PARAMS
7208 * sIn [I] Source
7209 * pdateOut [O] Destination
7211 * RETURNS
7212 * S_OK.
7214 HRESULT WINAPI VarDateFromI2(short sIn, DATE* pdateOut)
7216 return VarR8FromI2(sIn, pdateOut);
7219 /******************************************************************************
7220 * VarDateFromI4 (OLEAUT32.90)
7222 * Convert a VT_I4 to a VT_DATE.
7224 * PARAMS
7225 * lIn [I] Source
7226 * pdateOut [O] Destination
7228 * RETURNS
7229 * S_OK.
7231 HRESULT WINAPI VarDateFromI4(LONG lIn, DATE* pdateOut)
7233 return VarDateFromR8(lIn, pdateOut);
7236 /******************************************************************************
7237 * VarDateFromR4 (OLEAUT32.91)
7239 * Convert a VT_R4 to a VT_DATE.
7241 * PARAMS
7242 * fltIn [I] Source
7243 * pdateOut [O] Destination
7245 * RETURNS
7246 * S_OK.
7248 HRESULT WINAPI VarDateFromR4(FLOAT fltIn, DATE* pdateOut)
7250 return VarR8FromR4(fltIn, pdateOut);
7253 /******************************************************************************
7254 * VarDateFromR8 (OLEAUT32.92)
7256 * Convert a VT_R8 to a VT_DATE.
7258 * PARAMS
7259 * dblIn [I] Source
7260 * pdateOut [O] Destination
7262 * RETURNS
7263 * S_OK.
7265 HRESULT WINAPI VarDateFromR8(double dblIn, DATE* pdateOut)
7267 if (dblIn <= (DATE_MIN - 1.0) || dblIn >= (DATE_MAX + 1.0)) return DISP_E_OVERFLOW;
7268 *pdateOut = (DATE)dblIn;
7269 return S_OK;
7272 /**********************************************************************
7273 * VarDateFromDisp (OLEAUT32.95)
7275 * Convert a VT_DISPATCH to a VT_DATE.
7277 * PARAMS
7278 * pdispIn [I] Source
7279 * lcid [I] LCID for conversion
7280 * pdateOut [O] Destination
7282 * RETURNS
7283 * Success: S_OK.
7284 * Failure: E_INVALIDARG, if the source value is invalid
7285 * DISP_E_OVERFLOW, if the value will not fit in the destination
7286 * DISP_E_TYPEMISMATCH, if the type cannot be converted
7288 HRESULT WINAPI VarDateFromDisp(IDispatch* pdispIn, LCID lcid, DATE* pdateOut)
7290 return VARIANT_FromDisp(pdispIn, lcid, pdateOut, VT_DATE, 0);
7293 /******************************************************************************
7294 * VarDateFromBool (OLEAUT32.96)
7296 * Convert a VT_BOOL to a VT_DATE.
7298 * PARAMS
7299 * boolIn [I] Source
7300 * pdateOut [O] Destination
7302 * RETURNS
7303 * S_OK.
7305 HRESULT WINAPI VarDateFromBool(VARIANT_BOOL boolIn, DATE* pdateOut)
7307 return VarR8FromBool(boolIn, pdateOut);
7310 /**********************************************************************
7311 * VarDateFromCy (OLEAUT32.93)
7313 * Convert a VT_CY to a VT_DATE.
7315 * PARAMS
7316 * lIn [I] Source
7317 * pdateOut [O] Destination
7319 * RETURNS
7320 * S_OK.
7322 HRESULT WINAPI VarDateFromCy(CY cyIn, DATE* pdateOut)
7324 return VarR8FromCy(cyIn, pdateOut);
7327 /* Date string parsing */
7328 #define DP_TIMESEP 0x01 /* Time separator ( _must_ remain 0x1, used as a bitmask) */
7329 #define DP_DATESEP 0x02 /* Date separator */
7330 #define DP_MONTH 0x04 /* Month name */
7331 #define DP_AM 0x08 /* AM */
7332 #define DP_PM 0x10 /* PM */
7334 typedef struct tagDATEPARSE
7336 DWORD dwCount; /* Number of fields found so far (maximum 6) */
7337 DWORD dwParseFlags; /* Global parse flags (DP_ Flags above) */
7338 DWORD dwFlags[6]; /* Flags for each field */
7339 DWORD dwValues[6]; /* Value of each field */
7340 } DATEPARSE;
7342 #define TIMEFLAG(i) ((dp.dwFlags[i] & DP_TIMESEP) << i)
7344 #define IsLeapYear(y) (((y % 4) == 0) && (((y % 100) != 0) || ((y % 400) == 0)))
7346 /* Determine if a day is valid in a given month of a given year */
7347 static BOOL VARIANT_IsValidMonthDay(DWORD day, DWORD month, DWORD year)
7349 static const BYTE days[] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
7351 if (day && month && month < 13)
7353 if (day <= days[month] || (month == 2 && day == 29 && IsLeapYear(year)))
7354 return TRUE;
7356 return FALSE;
7359 /* Possible orders for 3 numbers making up a date */
7360 #define ORDER_MDY 0x01
7361 #define ORDER_YMD 0x02
7362 #define ORDER_YDM 0x04
7363 #define ORDER_DMY 0x08
7364 #define ORDER_MYD 0x10 /* Synthetic order, used only for funky 2 digit dates */
7366 /* Determine a date for a particular locale, from 3 numbers */
7367 static inline HRESULT VARIANT_MakeDate(DATEPARSE *dp, DWORD iDate,
7368 DWORD offset, SYSTEMTIME *st)
7370 DWORD dwAllOrders, dwTry, dwCount = 0, v1, v2, v3;
7372 if (!dp->dwCount)
7374 v1 = 30; /* Default to (Variant) 0 date part */
7375 v2 = 12;
7376 v3 = 1899;
7377 goto VARIANT_MakeDate_OK;
7380 v1 = dp->dwValues[offset + 0];
7381 v2 = dp->dwValues[offset + 1];
7382 if (dp->dwCount == 2)
7384 SYSTEMTIME current;
7385 GetSystemTime(&current);
7386 v3 = current.wYear;
7388 else
7389 v3 = dp->dwValues[offset + 2];
7391 TRACE("(%d,%d,%d,%d,%d)\n", v1, v2, v3, iDate, offset);
7393 /* If one number must be a month (Because a month name was given), then only
7394 * consider orders with the month in that position.
7395 * If we took the current year as 'v3', then only allow a year in that position.
7397 if (dp->dwFlags[offset + 0] & DP_MONTH)
7399 dwAllOrders = ORDER_MDY;
7401 else if (dp->dwFlags[offset + 1] & DP_MONTH)
7403 dwAllOrders = ORDER_DMY;
7404 if (dp->dwCount > 2)
7405 dwAllOrders |= ORDER_YMD;
7407 else if (dp->dwCount > 2 && dp->dwFlags[offset + 2] & DP_MONTH)
7409 dwAllOrders = ORDER_YDM;
7411 else
7413 dwAllOrders = ORDER_MDY|ORDER_DMY;
7414 if (dp->dwCount > 2)
7415 dwAllOrders |= (ORDER_YMD|ORDER_YDM);
7418 VARIANT_MakeDate_Start:
7419 TRACE("dwAllOrders is 0x%08x\n", dwAllOrders);
7421 while (dwAllOrders)
7423 DWORD dwTemp;
7425 if (dwCount == 0)
7427 /* First: Try the order given by iDate */
7428 switch (iDate)
7430 case 0: dwTry = dwAllOrders & ORDER_MDY; break;
7431 case 1: dwTry = dwAllOrders & ORDER_DMY; break;
7432 default: dwTry = dwAllOrders & ORDER_YMD; break;
7435 else if (dwCount == 1)
7437 /* Second: Try all the orders compatible with iDate */
7438 switch (iDate)
7440 case 0: dwTry = dwAllOrders & ~(ORDER_DMY|ORDER_YDM); break;
7441 case 1: dwTry = dwAllOrders & ~(ORDER_MDY|ORDER_YDM|ORDER_MYD); break;
7442 default: dwTry = dwAllOrders & ~(ORDER_DMY|ORDER_YDM); break;
7445 else
7447 /* Finally: Try any remaining orders */
7448 dwTry = dwAllOrders;
7451 TRACE("Attempt %d, dwTry is 0x%08x\n", dwCount, dwTry);
7453 dwCount++;
7454 if (!dwTry)
7455 continue;
7457 #define DATE_SWAP(x,y) do { dwTemp = x; x = y; y = dwTemp; } while (0)
7459 if (dwTry & ORDER_MDY)
7461 if (VARIANT_IsValidMonthDay(v2,v1,v3))
7463 DATE_SWAP(v1,v2);
7464 goto VARIANT_MakeDate_OK;
7466 dwAllOrders &= ~ORDER_MDY;
7468 if (dwTry & ORDER_YMD)
7470 if (VARIANT_IsValidMonthDay(v3,v2,v1))
7472 DATE_SWAP(v1,v3);
7473 goto VARIANT_MakeDate_OK;
7475 dwAllOrders &= ~ORDER_YMD;
7477 if (dwTry & ORDER_YDM)
7479 if (VARIANT_IsValidMonthDay(v2,v3,v1))
7481 DATE_SWAP(v1,v2);
7482 DATE_SWAP(v2,v3);
7483 goto VARIANT_MakeDate_OK;
7485 dwAllOrders &= ~ORDER_YDM;
7487 if (dwTry & ORDER_DMY)
7489 if (VARIANT_IsValidMonthDay(v1,v2,v3))
7490 goto VARIANT_MakeDate_OK;
7491 dwAllOrders &= ~ORDER_DMY;
7493 if (dwTry & ORDER_MYD)
7495 /* Only occurs if we are trying a 2 year date as M/Y not D/M */
7496 if (VARIANT_IsValidMonthDay(v3,v1,v2))
7498 DATE_SWAP(v1,v3);
7499 DATE_SWAP(v2,v3);
7500 goto VARIANT_MakeDate_OK;
7502 dwAllOrders &= ~ORDER_MYD;
7506 if (dp->dwCount == 2)
7508 /* We couldn't make a date as D/M or M/D, so try M/Y or Y/M */
7509 v3 = 1; /* 1st of the month */
7510 dwAllOrders = ORDER_YMD|ORDER_MYD;
7511 dp->dwCount = 0; /* Don't return to this code path again */
7512 dwCount = 0;
7513 goto VARIANT_MakeDate_Start;
7516 /* No valid dates were able to be constructed */
7517 return DISP_E_TYPEMISMATCH;
7519 VARIANT_MakeDate_OK:
7521 /* Check that the time part is ok */
7522 if (st->wHour > 23 || st->wMinute > 59 || st->wSecond > 59)
7523 return DISP_E_TYPEMISMATCH;
7525 TRACE("Time %d %d %d\n", st->wHour, st->wMinute, st->wSecond);
7526 if (st->wHour < 12 && (dp->dwParseFlags & DP_PM))
7527 st->wHour += 12;
7528 else if (st->wHour == 12 && (dp->dwParseFlags & DP_AM))
7529 st->wHour = 0;
7530 TRACE("Time %d %d %d\n", st->wHour, st->wMinute, st->wSecond);
7532 st->wDay = v1;
7533 st->wMonth = v2;
7534 /* FIXME: For 2 digit dates, I'm not sure if 30 is hard coded or not. It may
7535 * be retrieved from:
7536 * HKCU\Control Panel\International\Calendars\TwoDigitYearMax
7537 * But Wine doesn't have/use that key as at the time of writing.
7539 st->wYear = v3 < 30 ? 2000 + v3 : v3 < 100 ? 1900 + v3 : v3;
7540 TRACE("Returning date %d/%d/%d\n", v1, v2, st->wYear);
7541 return S_OK;
7544 /******************************************************************************
7545 * VarDateFromStr [OLEAUT32.94]
7547 * Convert a VT_BSTR to at VT_DATE.
7549 * PARAMS
7550 * strIn [I] String to convert
7551 * lcid [I] Locale identifier for the conversion
7552 * dwFlags [I] Flags affecting the conversion (VAR_ flags from "oleauto.h")
7553 * pdateOut [O] Destination for the converted value
7555 * RETURNS
7556 * Success: S_OK. pdateOut contains the converted value.
7557 * FAILURE: An HRESULT error code indicating the problem.
7559 * NOTES
7560 * Any date format that can be created using the date formats from lcid
7561 * (Either from kernel Nls functions, variant conversion or formatting) is a
7562 * valid input to this function. In addition, a few more esoteric formats are
7563 * also supported for compatibility with the native version. The date is
7564 * interpreted according to the date settings in the control panel, unless
7565 * the date is invalid in that format, in which the most compatible format
7566 * that produces a valid date will be used.
7568 HRESULT WINAPI VarDateFromStr(OLECHAR* strIn, LCID lcid, ULONG dwFlags, DATE* pdateOut)
7570 static const USHORT ParseDateTokens[] =
7572 LOCALE_SMONTHNAME1, LOCALE_SMONTHNAME2, LOCALE_SMONTHNAME3, LOCALE_SMONTHNAME4,
7573 LOCALE_SMONTHNAME5, LOCALE_SMONTHNAME6, LOCALE_SMONTHNAME7, LOCALE_SMONTHNAME8,
7574 LOCALE_SMONTHNAME9, LOCALE_SMONTHNAME10, LOCALE_SMONTHNAME11, LOCALE_SMONTHNAME12,
7575 LOCALE_SMONTHNAME13,
7576 LOCALE_SABBREVMONTHNAME1, LOCALE_SABBREVMONTHNAME2, LOCALE_SABBREVMONTHNAME3,
7577 LOCALE_SABBREVMONTHNAME4, LOCALE_SABBREVMONTHNAME5, LOCALE_SABBREVMONTHNAME6,
7578 LOCALE_SABBREVMONTHNAME7, LOCALE_SABBREVMONTHNAME8, LOCALE_SABBREVMONTHNAME9,
7579 LOCALE_SABBREVMONTHNAME10, LOCALE_SABBREVMONTHNAME11, LOCALE_SABBREVMONTHNAME12,
7580 LOCALE_SABBREVMONTHNAME13,
7581 LOCALE_SDAYNAME1, LOCALE_SDAYNAME2, LOCALE_SDAYNAME3, LOCALE_SDAYNAME4,
7582 LOCALE_SDAYNAME5, LOCALE_SDAYNAME6, LOCALE_SDAYNAME7,
7583 LOCALE_SABBREVDAYNAME1, LOCALE_SABBREVDAYNAME2, LOCALE_SABBREVDAYNAME3,
7584 LOCALE_SABBREVDAYNAME4, LOCALE_SABBREVDAYNAME5, LOCALE_SABBREVDAYNAME6,
7585 LOCALE_SABBREVDAYNAME7,
7586 LOCALE_S1159, LOCALE_S2359,
7587 LOCALE_SDATE
7589 static const BYTE ParseDateMonths[] =
7591 1,2,3,4,5,6,7,8,9,10,11,12,13,
7592 1,2,3,4,5,6,7,8,9,10,11,12,13
7594 unsigned int i;
7595 BSTR tokens[sizeof(ParseDateTokens)/sizeof(ParseDateTokens[0])];
7596 DATEPARSE dp;
7597 DWORD dwDateSeps = 0, iDate = 0;
7598 HRESULT hRet = S_OK;
7600 if ((dwFlags & (VAR_TIMEVALUEONLY|VAR_DATEVALUEONLY)) ==
7601 (VAR_TIMEVALUEONLY|VAR_DATEVALUEONLY))
7602 return E_INVALIDARG;
7604 if (!strIn)
7605 return DISP_E_TYPEMISMATCH;
7607 *pdateOut = 0.0;
7609 TRACE("(%s,0x%08x,0x%08x,%p)\n", debugstr_w(strIn), lcid, dwFlags, pdateOut);
7611 memset(&dp, 0, sizeof(dp));
7613 GetLocaleInfoW(lcid, LOCALE_IDATE|LOCALE_RETURN_NUMBER|(dwFlags & LOCALE_NOUSEROVERRIDE),
7614 (LPWSTR)&iDate, sizeof(iDate)/sizeof(WCHAR));
7615 TRACE("iDate is %d\n", iDate);
7617 /* Get the month/day/am/pm tokens for this locale */
7618 for (i = 0; i < sizeof(tokens)/sizeof(tokens[0]); i++)
7620 WCHAR buff[128];
7621 LCTYPE lctype = ParseDateTokens[i] | (dwFlags & LOCALE_NOUSEROVERRIDE);
7623 /* FIXME: Alternate calendars - should use GetCalendarInfo() and/or
7624 * GetAltMonthNames(). We should really cache these strings too.
7626 buff[0] = '\0';
7627 GetLocaleInfoW(lcid, lctype, buff, sizeof(buff)/sizeof(WCHAR));
7628 tokens[i] = SysAllocString(buff);
7629 TRACE("token %d is %s\n", i, debugstr_w(tokens[i]));
7632 /* Parse the string into our structure */
7633 while (*strIn)
7635 if (dp.dwCount >= 6)
7636 break;
7638 if (isdigitW(*strIn))
7640 dp.dwValues[dp.dwCount] = strtoulW(strIn, &strIn, 10);
7641 dp.dwCount++;
7642 strIn--;
7644 else if (isalpha(*strIn))
7646 BOOL bFound = FALSE;
7648 for (i = 0; i < sizeof(tokens)/sizeof(tokens[0]); i++)
7650 DWORD dwLen = strlenW(tokens[i]);
7651 if (dwLen && !strncmpiW(strIn, tokens[i], dwLen))
7653 if (i <= 25)
7655 dp.dwValues[dp.dwCount] = ParseDateMonths[i];
7656 dp.dwFlags[dp.dwCount] |= (DP_MONTH|DP_DATESEP);
7657 dp.dwCount++;
7659 else if (i > 39 && i < 42)
7661 if (!dp.dwCount || dp.dwParseFlags & (DP_AM|DP_PM))
7662 hRet = DISP_E_TYPEMISMATCH;
7663 else
7665 dp.dwFlags[dp.dwCount - 1] |= (i == 40 ? DP_AM : DP_PM);
7666 dp.dwParseFlags |= (i == 40 ? DP_AM : DP_PM);
7669 strIn += (dwLen - 1);
7670 bFound = TRUE;
7671 break;
7675 if (!bFound)
7677 if ((*strIn == 'a' || *strIn == 'A' || *strIn == 'p' || *strIn == 'P') &&
7678 (dp.dwCount && !(dp.dwParseFlags & (DP_AM|DP_PM))))
7680 /* Special case - 'a' and 'p' are recognised as short for am/pm */
7681 if (*strIn == 'a' || *strIn == 'A')
7683 dp.dwFlags[dp.dwCount - 1] |= DP_AM;
7684 dp.dwParseFlags |= DP_AM;
7686 else
7688 dp.dwFlags[dp.dwCount - 1] |= DP_PM;
7689 dp.dwParseFlags |= DP_PM;
7691 strIn++;
7693 else
7695 TRACE("No matching token for %s\n", debugstr_w(strIn));
7696 hRet = DISP_E_TYPEMISMATCH;
7697 break;
7701 else if (*strIn == ':' || *strIn == '.')
7703 if (!dp.dwCount || !strIn[1])
7704 hRet = DISP_E_TYPEMISMATCH;
7705 else
7706 if (tokens[42][0] == *strIn)
7708 dwDateSeps++;
7709 if (dwDateSeps > 2)
7710 hRet = DISP_E_TYPEMISMATCH;
7711 else
7712 dp.dwFlags[dp.dwCount - 1] |= DP_DATESEP;
7714 else
7715 dp.dwFlags[dp.dwCount - 1] |= DP_TIMESEP;
7717 else if (*strIn == '-' || *strIn == '/')
7719 dwDateSeps++;
7720 if (dwDateSeps > 2 || !dp.dwCount || !strIn[1])
7721 hRet = DISP_E_TYPEMISMATCH;
7722 else
7723 dp.dwFlags[dp.dwCount - 1] |= DP_DATESEP;
7725 else if (*strIn == ',' || isspaceW(*strIn))
7727 if (*strIn == ',' && !strIn[1])
7728 hRet = DISP_E_TYPEMISMATCH;
7730 else
7732 hRet = DISP_E_TYPEMISMATCH;
7734 strIn++;
7737 if (!dp.dwCount || dp.dwCount > 6 ||
7738 (dp.dwCount == 1 && !(dp.dwParseFlags & (DP_AM|DP_PM))))
7739 hRet = DISP_E_TYPEMISMATCH;
7741 if (SUCCEEDED(hRet))
7743 SYSTEMTIME st;
7744 DWORD dwOffset = 0; /* Start of date fields in dp.dwValues */
7746 st.wDayOfWeek = st.wHour = st.wMinute = st.wSecond = st.wMilliseconds = 0;
7748 /* Figure out which numbers correspond to which fields.
7750 * This switch statement works based on the fact that native interprets any
7751 * fields that are not joined with a time separator ('.' or ':') as date
7752 * fields. Thus we construct a value from 0-32 where each set bit indicates
7753 * a time field. This encapsulates the hundreds of permutations of 2-6 fields.
7754 * For valid permutations, we set dwOffset to point to the first date field
7755 * and shorten dp.dwCount by the number of time fields found. The real
7756 * magic here occurs in VARIANT_MakeDate() above, where we determine what
7757 * each date number must represent in the context of iDate.
7759 TRACE("0x%08x\n", TIMEFLAG(0)|TIMEFLAG(1)|TIMEFLAG(2)|TIMEFLAG(3)|TIMEFLAG(4));
7761 switch (TIMEFLAG(0)|TIMEFLAG(1)|TIMEFLAG(2)|TIMEFLAG(3)|TIMEFLAG(4))
7763 case 0x1: /* TT TTDD TTDDD */
7764 if (dp.dwCount > 3 &&
7765 ((dp.dwFlags[2] & (DP_AM|DP_PM)) || (dp.dwFlags[3] & (DP_AM|DP_PM)) ||
7766 (dp.dwFlags[4] & (DP_AM|DP_PM))))
7767 hRet = DISP_E_TYPEMISMATCH;
7768 else if (dp.dwCount != 2 && dp.dwCount != 4 && dp.dwCount != 5)
7769 hRet = DISP_E_TYPEMISMATCH;
7770 st.wHour = dp.dwValues[0];
7771 st.wMinute = dp.dwValues[1];
7772 dp.dwCount -= 2;
7773 dwOffset = 2;
7774 break;
7776 case 0x3: /* TTT TTTDD TTTDDD */
7777 if (dp.dwCount > 4 &&
7778 ((dp.dwFlags[3] & (DP_AM|DP_PM)) || (dp.dwFlags[4] & (DP_AM|DP_PM)) ||
7779 (dp.dwFlags[5] & (DP_AM|DP_PM))))
7780 hRet = DISP_E_TYPEMISMATCH;
7781 else if (dp.dwCount != 3 && dp.dwCount != 5 && dp.dwCount != 6)
7782 hRet = DISP_E_TYPEMISMATCH;
7783 st.wHour = dp.dwValues[0];
7784 st.wMinute = dp.dwValues[1];
7785 st.wSecond = dp.dwValues[2];
7786 dwOffset = 3;
7787 dp.dwCount -= 3;
7788 break;
7790 case 0x4: /* DDTT */
7791 if (dp.dwCount != 4 ||
7792 (dp.dwFlags[0] & (DP_AM|DP_PM)) || (dp.dwFlags[1] & (DP_AM|DP_PM)))
7793 hRet = DISP_E_TYPEMISMATCH;
7795 st.wHour = dp.dwValues[2];
7796 st.wMinute = dp.dwValues[3];
7797 dp.dwCount -= 2;
7798 break;
7800 case 0x0: /* T DD DDD TDDD TDDD */
7801 if (dp.dwCount == 1 && (dp.dwParseFlags & (DP_AM|DP_PM)))
7803 st.wHour = dp.dwValues[0]; /* T */
7804 dp.dwCount = 0;
7805 break;
7807 else if (dp.dwCount > 4 || (dp.dwCount < 3 && dp.dwParseFlags & (DP_AM|DP_PM)))
7809 hRet = DISP_E_TYPEMISMATCH;
7811 else if (dp.dwCount == 3)
7813 if (dp.dwFlags[0] & (DP_AM|DP_PM)) /* TDD */
7815 dp.dwCount = 2;
7816 st.wHour = dp.dwValues[0];
7817 dwOffset = 1;
7818 break;
7820 if (dp.dwFlags[2] & (DP_AM|DP_PM)) /* DDT */
7822 dp.dwCount = 2;
7823 st.wHour = dp.dwValues[2];
7824 break;
7826 else if (dp.dwParseFlags & (DP_AM|DP_PM))
7827 hRet = DISP_E_TYPEMISMATCH;
7829 else if (dp.dwCount == 4)
7831 dp.dwCount = 3;
7832 if (dp.dwFlags[0] & (DP_AM|DP_PM)) /* TDDD */
7834 st.wHour = dp.dwValues[0];
7835 dwOffset = 1;
7837 else if (dp.dwFlags[3] & (DP_AM|DP_PM)) /* DDDT */
7839 st.wHour = dp.dwValues[3];
7841 else
7842 hRet = DISP_E_TYPEMISMATCH;
7843 break;
7845 /* .. fall through .. */
7847 case 0x8: /* DDDTT */
7848 if ((dp.dwCount == 2 && (dp.dwParseFlags & (DP_AM|DP_PM))) ||
7849 (dp.dwCount == 5 && ((dp.dwFlags[0] & (DP_AM|DP_PM)) ||
7850 (dp.dwFlags[1] & (DP_AM|DP_PM)) || (dp.dwFlags[2] & (DP_AM|DP_PM)))) ||
7851 dp.dwCount == 4 || dp.dwCount == 6)
7852 hRet = DISP_E_TYPEMISMATCH;
7853 st.wHour = dp.dwValues[3];
7854 st.wMinute = dp.dwValues[4];
7855 if (dp.dwCount == 5)
7856 dp.dwCount -= 2;
7857 break;
7859 case 0xC: /* DDTTT */
7860 if (dp.dwCount != 5 ||
7861 (dp.dwFlags[0] & (DP_AM|DP_PM)) || (dp.dwFlags[1] & (DP_AM|DP_PM)))
7862 hRet = DISP_E_TYPEMISMATCH;
7863 st.wHour = dp.dwValues[2];
7864 st.wMinute = dp.dwValues[3];
7865 st.wSecond = dp.dwValues[4];
7866 dp.dwCount -= 3;
7867 break;
7869 case 0x18: /* DDDTTT */
7870 if ((dp.dwFlags[0] & (DP_AM|DP_PM)) || (dp.dwFlags[1] & (DP_AM|DP_PM)) ||
7871 (dp.dwFlags[2] & (DP_AM|DP_PM)))
7872 hRet = DISP_E_TYPEMISMATCH;
7873 st.wHour = dp.dwValues[3];
7874 st.wMinute = dp.dwValues[4];
7875 st.wSecond = dp.dwValues[5];
7876 dp.dwCount -= 3;
7877 break;
7879 default:
7880 hRet = DISP_E_TYPEMISMATCH;
7881 break;
7884 if (SUCCEEDED(hRet))
7886 hRet = VARIANT_MakeDate(&dp, iDate, dwOffset, &st);
7888 if (dwFlags & VAR_TIMEVALUEONLY)
7890 st.wYear = 1899;
7891 st.wMonth = 12;
7892 st.wDay = 30;
7894 else if (dwFlags & VAR_DATEVALUEONLY)
7895 st.wHour = st.wMinute = st.wSecond = 0;
7897 /* Finally, convert the value to a VT_DATE */
7898 if (SUCCEEDED(hRet))
7899 hRet = SystemTimeToVariantTime(&st, pdateOut) ? S_OK : DISP_E_TYPEMISMATCH;
7903 for (i = 0; i < sizeof(tokens)/sizeof(tokens[0]); i++)
7904 SysFreeString(tokens[i]);
7905 return hRet;
7908 /******************************************************************************
7909 * VarDateFromI1 (OLEAUT32.221)
7911 * Convert a VT_I1 to a VT_DATE.
7913 * PARAMS
7914 * cIn [I] Source
7915 * pdateOut [O] Destination
7917 * RETURNS
7918 * S_OK.
7920 HRESULT WINAPI VarDateFromI1(signed char cIn, DATE* pdateOut)
7922 return VarR8FromI1(cIn, pdateOut);
7925 /******************************************************************************
7926 * VarDateFromUI2 (OLEAUT32.222)
7928 * Convert a VT_UI2 to a VT_DATE.
7930 * PARAMS
7931 * uiIn [I] Source
7932 * pdateOut [O] Destination
7934 * RETURNS
7935 * S_OK.
7937 HRESULT WINAPI VarDateFromUI2(USHORT uiIn, DATE* pdateOut)
7939 return VarR8FromUI2(uiIn, pdateOut);
7942 /******************************************************************************
7943 * VarDateFromUI4 (OLEAUT32.223)
7945 * Convert a VT_UI4 to a VT_DATE.
7947 * PARAMS
7948 * ulIn [I] Source
7949 * pdateOut [O] Destination
7951 * RETURNS
7952 * S_OK.
7954 HRESULT WINAPI VarDateFromUI4(ULONG ulIn, DATE* pdateOut)
7956 return VarDateFromR8(ulIn, pdateOut);
7959 /**********************************************************************
7960 * VarDateFromDec (OLEAUT32.224)
7962 * Convert a VT_DECIMAL to a VT_DATE.
7964 * PARAMS
7965 * pdecIn [I] Source
7966 * pdateOut [O] Destination
7968 * RETURNS
7969 * S_OK.
7971 HRESULT WINAPI VarDateFromDec(DECIMAL *pdecIn, DATE* pdateOut)
7973 return VarR8FromDec(pdecIn, pdateOut);
7976 /******************************************************************************
7977 * VarDateFromI8 (OLEAUT32.364)
7979 * Convert a VT_I8 to a VT_DATE.
7981 * PARAMS
7982 * llIn [I] Source
7983 * pdateOut [O] Destination
7985 * RETURNS
7986 * Success: S_OK.
7987 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
7989 HRESULT WINAPI VarDateFromI8(LONG64 llIn, DATE* pdateOut)
7991 if (llIn < DATE_MIN || llIn > DATE_MAX) return DISP_E_OVERFLOW;
7992 *pdateOut = (DATE)llIn;
7993 return S_OK;
7996 /******************************************************************************
7997 * VarDateFromUI8 (OLEAUT32.365)
7999 * Convert a VT_UI8 to a VT_DATE.
8001 * PARAMS
8002 * ullIn [I] Source
8003 * pdateOut [O] Destination
8005 * RETURNS
8006 * Success: S_OK.
8007 * Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
8009 HRESULT WINAPI VarDateFromUI8(ULONG64 ullIn, DATE* pdateOut)
8011 if (ullIn > DATE_MAX) return DISP_E_OVERFLOW;
8012 *pdateOut = (DATE)ullIn;
8013 return S_OK;