Changeset 8450 for trunk/src/oleaut32/variant.c
- Timestamp:
- May 17, 2002, 12:18:06 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oleaut32/variant.c
r7916 r8450 3 3 * 4 4 * Copyright 1998 Jean-Claude Cote 5 * 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. 10 * 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. 15 * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 5 19 * 6 20 * NOTES … … 20 34 * - The parsing does not accept as many formats as the Windows implementation. 21 35 */ 22 #ifdef __WIN32OS2__23 #define HAVE_FLOAT_H24 #define WINE_LARGE_INTEGER25 #include "oleaut32.h"26 27 #endif28 36 29 37 #include "config.h" … … 42 50 #include "oleauto.h" 43 51 #include "heap.h" 44 #include " debugtools.h"52 #include "wine/debug.h" 45 53 #include "winerror.h" 46 54 #include "parsedt.h" 47 55 48 DEFAULT_DEBUG_CHANNEL(ole);56 WINE_DEFAULT_DEBUG_CHANNEL(ole); 49 57 50 58 #define SYSDUPSTRING(str) SysAllocStringLen((str), SysStringLen(str)) … … 1646 1654 ( vt & VT_TYPEMASK ) > VT_MAXVALIDTYPE ) 1647 1655 { 1648 res = E_INVALIDARG;1656 res = DISP_E_BADVARTYPE; 1649 1657 } 1650 1658 … … 1968 1976 } 1969 1977 } 1970 1971 1978 1979 if (res == S_OK) V_VT(pvargDest) = V_VT(pvargSrc) & VT_TYPEMASK; 1972 1980 } 1973 1981 }
Note:
See TracChangeset
for help on using the changeset viewer.