Sync to Wine-20050930: Francois Gouget fgouget@free.fr - Fix .spec declarations for functinos with 64bit arguments (reported by winapi_check). Robert Shearman rob@codeweavers.com - Add VT_UNKNOWN support for VARIANT marshaling by generalising the existing VT_DISPATCH code. - Fix ref-counting rules to match native DCOM Dlls. Alex Villacís Lasso a_villacis@palosanto.com - Modify VarDiv() and VarSub() to use the existing VarDecSub() and VarDecDiv() for DECIMAL. - Fix a scaling error in VarR4FromDec() and VarR8FromDec() that incorrectly multiplies the high 32 bits of the DECIMAL by 1e64 instead of the correct 2^64. - Make Single|Double->BSTR conversion use the specified locale for the decimal point even without the LOCALE_USE_NLS flag. Test supplied. Alexandre Julliard julliard@winehq.org - We are no longer generating .spec.c files. - Removed unused debug channels. - Specify 64-bit integers as double instead of long long in spec files so that we get the correct number of arguments. - Use a more portable scheme for storing the name of a critical section. - Use MAKEINTRESOURCE instead of casts where appropriate. - We are no longer generating .dbg.c files. Milko Krachounov milko@3mhz.net - Bulgarian resources for mpr, msi, user, commdlg, oleaut32, shdocvw, shell32, comctl32, msrle32, mshtml, winspool, wineps, serialui, setupapi, wininet, regedit, uninstaller, notepad, winecfg and winhelp. Mike McCormack mike@codeweavers.com - Fix "empty body in an if/else-statement" warnings. Walt Ogburn reuben@ugcs.caltech.edu - Get IFontDisp type information from stdole2.tlb, instead of IDispatch information from stdole32.tlb. Marcus Meissner marcus@jet.franken.de - Support more arguments in _invoke(). Marcus Meissner meissner@suse.de - VT_PTR->VT_USERDEFINED chains depend on the TKIND of the userdefined type due to our handling of COM interfaces in there. Modified: trunk/reactos/lib/oleaut32/dispatch.c Modified: trunk/reactos/lib/oleaut32/oleaut32.rc Modified: trunk/reactos/lib/oleaut32/oleaut32.spec Added: trunk/reactos/lib/oleaut32/oleaut32_Bg.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Cz.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_De.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Dk.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_En.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Es.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Fr.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Hu.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_It.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Nl.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_No.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Pl.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Pt.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Ru.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Sv.rc Modified: trunk/reactos/lib/oleaut32/oleaut32_Th.rc Modified: trunk/reactos/lib/oleaut32/olefont.c Modified: trunk/reactos/lib/oleaut32/tmarshal.c Modified: trunk/reactos/lib/oleaut32/typelib.c Modified: trunk/reactos/lib/oleaut32/usrmarshal.c Modified: trunk/reactos/lib/oleaut32/variant.c Modified: trunk/reactos/lib/oleaut32/vartype.c Modified: trunk/reactos/lib/oleaut32/version.rc _____
Modified: trunk/reactos/lib/oleaut32/dispatch.c --- trunk/reactos/lib/oleaut32/dispatch.c 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/dispatch.c 2005-10-08 17:10:59 UTC (rev 18342) @@ -40,7 +40,6 @@
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(ole); -WINE_DECLARE_DEBUG_CHANNEL(typelib);
static IDispatch * WINAPI StdDispatch_Construct(IUnknown * punkOuter, void * pvThis, ITypeInfo * pTypeInfo);
_____
Modified: trunk/reactos/lib/oleaut32/oleaut32.rc --- trunk/reactos/lib/oleaut32/oleaut32.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,48 +1,49 @@
-/* - * Top level resource file for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -#include "windef.h" -#include "winbase.h" -#include "resource.h" - -#include "version.rc" - -#include "oleaut32_De.rc" -#include "oleaut32_Dk.rc" -#include "oleaut32_En.rc" -#include "oleaut32_Es.rc" -#include "oleaut32_Cz.rc" -#include "oleaut32_Fr.rc" -#include "oleaut32_Hu.rc" -#include "oleaut32_It.rc" -#include "oleaut32_Nl.rc" -#include "oleaut32_No.rc" -#include "oleaut32_Pl.rc" -#include "oleaut32_Pt.rc" -#include "oleaut32_Ru.rc" -#include "oleaut32_Sv.rc" -#include "oleaut32_Th.rc" - -/* - * FIXME: - * Finnish, Greek, Hebrew, Japanese, Korean, - * Turkish, Slovenian (at least) are localised in XP Home. - * I expect Chinese etc are localised in Asian Editions also. - */ +/* + * Top level resource file for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include "windef.h" +#include "winbase.h" +#include "resource.h" + +#include "version.rc" + +#include "oleaut32_Bg.rc" +#include "oleaut32_De.rc" +#include "oleaut32_Dk.rc" +#include "oleaut32_En.rc" +#include "oleaut32_Es.rc" +#include "oleaut32_Cz.rc" +#include "oleaut32_Fr.rc" +#include "oleaut32_Hu.rc" +#include "oleaut32_It.rc" +#include "oleaut32_Nl.rc" +#include "oleaut32_No.rc" +#include "oleaut32_Pl.rc" +#include "oleaut32_Pt.rc" +#include "oleaut32_Ru.rc" +#include "oleaut32_Sv.rc" +#include "oleaut32_Th.rc" + +/* + * FIXME: + * Finnish, Greek, Hebrew, Japanese, Korean, + * Turkish, Slovenian (at least) are localised in XP Home. + * I expect Chinese etc are localised in Asian Editions also. + */ Property changes on: trunk/reactos/lib/oleaut32/oleaut32.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32.spec --- trunk/reactos/lib/oleaut32/oleaut32.spec 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32.spec 2005-10-08 17:10:59 UTC (rev 18342) @@ -48,7 +48,7 @@
49 stdcall VarI2FromI4(long ptr) 50 stdcall VarI2FromR4(long ptr) 51 stdcall VarI2FromR8(double ptr) -52 stdcall VarI2FromCy(long long ptr) +52 stdcall VarI2FromCy(double ptr) 53 stdcall VarI2FromDate(double ptr) 54 stdcall VarI2FromStr(wstr long long ptr) 55 stdcall VarI2FromDisp(ptr long ptr) @@ -58,7 +58,7 @@ 59 stdcall VarI4FromI2(long ptr) 60 stdcall VarI4FromR4(long ptr) 61 stdcall VarI4FromR8(double ptr) -62 stdcall VarI4FromCy(long long ptr) +62 stdcall VarI4FromCy(double ptr) 63 stdcall VarI4FromDate(double ptr) 64 stdcall VarI4FromStr(wstr long long ptr) 65 stdcall VarI4FromDisp(ptr long ptr) @@ -68,7 +68,7 @@ 69 stdcall VarR4FromI2(long ptr) 70 stdcall VarR4FromI4(long ptr) 71 stdcall VarR4FromR8(double ptr) -72 stdcall VarR4FromCy(long long ptr) +72 stdcall VarR4FromCy(double ptr) 73 stdcall VarR4FromDate(double ptr) 74 stdcall VarR4FromStr(wstr long long ptr) 75 stdcall VarR4FromDisp(ptr long ptr) @@ -78,7 +78,7 @@ 79 stdcall VarR8FromI2(long ptr) 80 stdcall VarR8FromI4(long ptr) 81 stdcall VarR8FromR4(long ptr) -82 stdcall VarR8FromCy(long long ptr) +82 stdcall VarR8FromCy(double ptr) 83 stdcall VarR8FromDate(double ptr) 84 stdcall VarR8FromStr(wstr long long ptr) 85 stdcall VarR8FromDisp(ptr long ptr) @@ -89,7 +89,7 @@ 90 stdcall VarDateFromI4(long ptr) 91 stdcall VarDateFromR4(long ptr) 92 stdcall VarDateFromR8(double ptr) -93 stdcall VarDateFromCy(long long ptr) +93 stdcall VarDateFromCy(double ptr) 94 stdcall VarDateFromStr(wstr long long ptr) 95 stdcall VarDateFromDisp(ptr long ptr) 96 stdcall VarDateFromBool(long ptr) @@ -109,7 +109,7 @@ 110 stdcall VarBstrFromI4(long long long ptr) 111 stdcall VarBstrFromR4(long long long ptr) 112 stdcall VarBstrFromR8(double long long ptr) -113 stdcall VarBstrFromCy(long long long long ptr) +113 stdcall VarBstrFromCy(double long long ptr) 114 stdcall VarBstrFromDate(double long long ptr) 115 stub VarBstrFromDisp 116 stdcall VarBstrFromBool(long long long ptr) @@ -120,7 +120,7 @@ 121 stdcall VarBoolFromR4(long ptr) 122 stdcall VarBoolFromR8(double ptr) 123 stdcall VarBoolFromDate(double ptr) -124 stdcall VarBoolFromCy(long long ptr) +124 stdcall VarBoolFromCy(double ptr) 125 stdcall VarBoolFromStr(wstr long long ptr) 126 stdcall VarBoolFromDisp(ptr long ptr) 127 stdcall VarFormatCurrency(ptr long long long long long ptr) @@ -130,7 +130,7 @@ 131 stdcall VarUI1FromI4(long ptr) 132 stdcall VarUI1FromR4(long ptr) 133 stdcall VarUI1FromR8(double ptr) -134 stdcall VarUI1FromCy(long long ptr) +134 stdcall VarUI1FromCy(double ptr) 135 stdcall VarUI1FromDate(double ptr) 136 stdcall VarUI1FromStr(wstr long long ptr) 137 stdcall VarUI1FromDisp(ptr long ptr) @@ -190,7 +190,7 @@ 193 stdcall VarDecFromR4(long ptr) 194 stdcall VarDecFromR8(double ptr) 195 stdcall VarDecFromDate(double ptr) -196 stdcall VarDecFromCy(long long ptr) +196 stdcall VarDecFromCy(double ptr) 197 stdcall VarDecFromStr(wstr long long ptr) 198 stdcall VarDecFromDisp(ptr long ptr) 199 stdcall VarDecFromBool(long ptr) @@ -244,7 +244,7 @@ 247 stdcall VarI1FromR4(long ptr) 248 stdcall VarI1FromR8(double ptr) 249 stdcall VarI1FromDate(double ptr) -250 stdcall VarI1FromCy(long long ptr) +250 stdcall VarI1FromCy(double ptr) 251 stdcall VarI1FromStr(wstr long long ptr) 252 stdcall VarI1FromDisp(ptr long ptr) 253 stdcall VarI1FromBool(long ptr) @@ -257,7 +257,7 @@ 260 stdcall VarUI2FromR4(long ptr) 261 stdcall VarUI2FromR8(double ptr) 262 stdcall VarUI2FromDate(double ptr) -263 stdcall VarUI2FromCy(long long ptr) +263 stdcall VarUI2FromCy(double ptr) 264 stdcall VarUI2FromStr(wstr long long ptr) 265 stdcall VarUI2FromDisp(ptr long ptr) 266 stdcall VarUI2FromBool(long ptr) @@ -270,7 +270,7 @@ 273 stdcall VarUI4FromR4(long ptr) 274 stdcall VarUI4FromR8(double ptr) 275 stdcall VarUI4FromDate(double ptr) -276 stdcall VarUI4FromCy(long long ptr) +276 stdcall VarUI4FromCy(double ptr) 277 stdcall VarUI4FromStr(wstr long long ptr) 278 stdcall VarUI4FromDisp(ptr long ptr) 279 stdcall VarUI4FromBool(long ptr) @@ -293,17 +293,17 @@ 296 stub LPSAFEARRAY_Marshal 297 stub LPSAFEARRAY_Unmarshal 298 stdcall VarDecCmpR8(ptr double) -299 stdcall VarCyAdd(long long long long ptr) -303 stdcall VarCyMul(long long long long ptr) -304 stdcall VarCyMulI4(long long long ptr) -305 stdcall VarCySub(long long long long ptr) -306 stdcall VarCyAbs(long long ptr) -307 stdcall VarCyFix(long long ptr) -308 stdcall VarCyInt(long long ptr) -309 stdcall VarCyNeg(long long ptr) -310 stdcall VarCyRound(long long long ptr) -311 stdcall VarCyCmp(long long long long) -312 stdcall VarCyCmpR8(long long double) +299 stdcall VarCyAdd(double double ptr) +303 stdcall VarCyMul(double double ptr) +304 stdcall VarCyMulI4(double long ptr) +305 stdcall VarCySub(double double ptr) +306 stdcall VarCyAbs(double ptr) +307 stdcall VarCyFix(double ptr) +308 stdcall VarCyInt(double ptr) +309 stdcall VarCyNeg(double ptr) +310 stdcall VarCyRound(double long ptr) +311 stdcall VarCyCmp(double double) +312 stdcall VarCyCmpR8(double double) 313 stdcall VarBstrCat(wstr wstr ptr) 314 stdcall VarBstrCmp(wstr wstr long long) 315 stdcall VarR8Pow(double double ptr) @@ -316,7 +316,7 @@ 325 stub SetVarConversionLocaleSetting 326 stub GetVarConversionLocaleSetting 327 stdcall SetOaNoCache() -329 stdcall VarCyMulI8(long long long long ptr) +329 stdcall VarCyMulI8(double double ptr) 330 stdcall VarDateFromUdate(ptr long ptr) 331 stdcall VarUdateFromDate(double long ptr) 332 stub GetAltMonthNames @@ -324,7 +324,7 @@ 334 stdcall VarI8FromI2(long long) 335 stdcall VarI8FromR4(long long) 336 stdcall VarI8FromR8(double long) -337 stdcall VarI8FromCy(long long ptr) +337 stdcall VarI8FromCy(double ptr) 338 stdcall VarI8FromDate(double long) 339 stdcall VarI8FromStr(wstr long long ptr) 340 stdcall VarI8FromDisp(ptr long ptr) @@ -333,30 +333,30 @@ 343 stdcall VarI8FromUI2(long long) 344 stdcall VarI8FromUI4(long long) 345 stdcall VarI8FromDec(ptr ptr) -346 stdcall VarI2FromI8(long long ptr) -347 stdcall VarI2FromUI8(long long ptr) -348 stdcall VarI4FromI8(long long ptr) -349 stdcall VarI4FromUI8(long long ptr) -360 stdcall VarR4FromI8(long long ptr) -361 stdcall VarR4FromUI8(long long ptr) -362 stdcall VarR8FromI8(long long ptr) -363 stdcall VarR8FromUI8(long long ptr) -364 stdcall VarDateFromI8(long long ptr) -365 stdcall VarDateFromUI8(long long ptr) -366 stdcall VarCyFromI8(long long ptr) -367 stdcall VarCyFromUI8(long long ptr) -368 stdcall VarBstrFromI8(long long long long ptr) -369 stdcall VarBstrFromUI8(long long long long ptr) -370 stdcall VarBoolFromI8(long long ptr) -371 stdcall VarBoolFromUI8(long long ptr) -372 stdcall VarUI1FromI8(long long ptr) -373 stdcall VarUI1FromUI8(long long ptr) -374 stdcall VarDecFromI8(long long ptr) -375 stdcall VarDecFromUI8(long long ptr) -376 stdcall VarI1FromI8(long long ptr) -377 stdcall VarI1FromUI8(long long ptr) -378 stdcall VarUI2FromI8(long long ptr) -379 stdcall VarUI2FromUI8(long long ptr) +346 stdcall VarI2FromI8(double ptr) +347 stdcall VarI2FromUI8(double ptr) +348 stdcall VarI4FromI8(double ptr) +349 stdcall VarI4FromUI8(double ptr) +360 stdcall VarR4FromI8(double ptr) +361 stdcall VarR4FromUI8(double ptr) +362 stdcall VarR8FromI8(double ptr) +363 stdcall VarR8FromUI8(double ptr) +364 stdcall VarDateFromI8(double ptr) +365 stdcall VarDateFromUI8(double ptr) +366 stdcall VarCyFromI8(double ptr) +367 stdcall VarCyFromUI8(double ptr) +368 stdcall VarBstrFromI8(double long long ptr) +369 stdcall VarBstrFromUI8(double long long ptr) +370 stdcall VarBoolFromI8(double ptr) +371 stdcall VarBoolFromUI8(double ptr) +372 stdcall VarUI1FromI8(double ptr) +373 stdcall VarUI1FromUI8(double ptr) +374 stdcall VarDecFromI8(double ptr) +375 stdcall VarDecFromUI8(double ptr) +376 stdcall VarI1FromI8(double ptr) +377 stdcall VarI1FromUI8(double ptr) +378 stdcall VarUI2FromI8(double ptr) +379 stdcall VarUI2FromUI8(double ptr) 380 stub UserHWND_from_local 381 stub UserHWND_to_local 382 stub UserHWND_free_inst @@ -393,15 +393,15 @@ 422 stub OleLoadPictureFile 423 stub OleSavePictureFile 424 stdcall OleLoadPicturePath(wstr ptr long long ptr ptr) -425 stdcall VarUI4FromI8(long long ptr) -426 stdcall VarUI4FromUI8(long long ptr) -427 stdcall VarI8FromUI8(long long ptr) -428 stdcall VarUI8FromI8(long long ptr) +425 stdcall VarUI4FromI8(double ptr) +426 stdcall VarUI4FromUI8(double ptr) +427 stdcall VarI8FromUI8(double ptr) +428 stdcall VarUI8FromI8(double ptr) 429 stdcall VarUI8FromUI1(long ptr) 430 stdcall VarUI8FromI2(long ptr) 431 stdcall VarUI8FromR4(long ptr) 432 stdcall VarUI8FromR8(double ptr) -433 stdcall VarUI8FromCy(long long ptr) +433 stdcall VarUI8FromCy(double ptr) 434 stdcall VarUI8FromDate(double ptr) 435 stdcall VarUI8FromStr(wstr long long ptr) 436 stdcall VarUI8FromDisp(ptr long ptr) _____
Copied: trunk/reactos/lib/oleaut32/oleaut32_Bg.rc (from rev 18341, vendor/wine/dlls/oleaut32/current/oleaut32_Bg.rc) Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Bg.rc ___________________________________________________________________ Name: svn:keywords + Author Date Id Revision Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_Cz.rc --- trunk/reactos/lib/oleaut32/oleaut32_Cz.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_Cz.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * Czech resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_CZECH, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Pravda" - IDS_FALSE "Nepravda" - IDS_YES "Ano" - IDS_NO "Ne" - IDS_ON "Zapnuto" - IDS_OFF "Vypnuto" -} +/* + * Czech resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_CZECH, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Pravda" + IDS_FALSE "Nepravda" + IDS_YES "Ano" + IDS_NO "Ne" + IDS_ON "Zapnuto" + IDS_OFF "Vypnuto" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Cz.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_De.rc --- trunk/reactos/lib/oleaut32/oleaut32_De.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_De.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * German resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Wahr" - IDS_FALSE "Falsch" - IDS_YES "Ja" - IDS_NO "Nein" - IDS_ON "Ein" - IDS_OFF "Aus" -} +/* + * German resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Wahr" + IDS_FALSE "Falsch" + IDS_YES "Ja" + IDS_NO "Nein" + IDS_ON "Ein" + IDS_OFF "Aus" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_De.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_Dk.rc --- trunk/reactos/lib/oleaut32/oleaut32_Dk.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_Dk.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * Danish resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_DANISH, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Sand" - IDS_FALSE "Falsk" - IDS_YES "Ja" - IDS_NO "Nej" - IDS_ON "Til" - IDS_OFF "Fra" -} +/* + * Danish resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_DANISH, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Sand" + IDS_FALSE "Falsk" + IDS_YES "Ja" + IDS_NO "Nej" + IDS_ON "Til" + IDS_OFF "Fra" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Dk.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_En.rc --- trunk/reactos/lib/oleaut32/oleaut32_En.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_En.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * English resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "True" - IDS_FALSE "False" - IDS_YES "Yes" - IDS_NO "No" - IDS_ON "On" - IDS_OFF "Off" -} +/* + * English resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "True" + IDS_FALSE "False" + IDS_YES "Yes" + IDS_NO "No" + IDS_ON "On" + IDS_OFF "Off" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_En.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_Es.rc --- trunk/reactos/lib/oleaut32/oleaut32_Es.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_Es.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * Spanish resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Verdadero" - IDS_FALSE "Falso" - IDS_YES "SÝ" - IDS_NO "No" - IDS_ON "Activado" - IDS_OFF "Desactivado" -} +/* + * Spanish resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Verdadero" + IDS_FALSE "Falso" + IDS_YES "SÝ" + IDS_NO "No" + IDS_ON "Activado" + IDS_OFF "Desactivado" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Es.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_Fr.rc --- trunk/reactos/lib/oleaut32/oleaut32_Fr.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_Fr.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * French resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Vrai" - IDS_FALSE "Faux" - IDS_YES "Oui" - IDS_NO "Non" - IDS_ON "Actif" - IDS_OFF "Inactif" -} +/* + * French resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Vrai" + IDS_FALSE "Faux" + IDS_YES "Oui" + IDS_NO "Non" + IDS_ON "Actif" + IDS_OFF "Inactif" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Fr.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_Hu.rc --- trunk/reactos/lib/oleaut32/oleaut32_Hu.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_Hu.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * Hungarian resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Igaz" - IDS_FALSE "Hamis" - IDS_YES "Igen" - IDS_NO "Nem" - IDS_ON "Be" - IDS_OFF "Ki" -} +/* + * Hungarian resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Igaz" + IDS_FALSE "Hamis" + IDS_YES "Igen" + IDS_NO "Nem" + IDS_ON "Be" + IDS_OFF "Ki" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Hu.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_It.rc --- trunk/reactos/lib/oleaut32/oleaut32_It.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_It.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * Italian resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Vero" - IDS_FALSE "Falso" - IDS_YES "Si" - IDS_NO "No" - IDS_ON "On" - IDS_OFF "Off" -} +/* + * Italian resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_ITALIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Vero" + IDS_FALSE "Falso" + IDS_YES "Si" + IDS_NO "No" + IDS_ON "On" + IDS_OFF "Off" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_It.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_Nl.rc --- trunk/reactos/lib/oleaut32/oleaut32_Nl.rc 2005-10-08 17:05:40 UTC (rev 18341) +++ trunk/reactos/lib/oleaut32/oleaut32_Nl.rc 2005-10-08 17:10:59 UTC (rev 18342) @@ -1,31 +1,31 @@
-/* - * Dutch resources for oleaut32 - * - * Copyright 2003 Jon Griffiths - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -LANGUAGE LANG_DUTCH, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -{ - IDS_TRUE "Waar" - IDS_FALSE "Onwaar" - IDS_YES "Ja" - IDS_NO "Nee" - IDS_ON "Aan" - IDS_OFF "Uit" -} +/* + * Dutch resources for oleaut32 + * + * Copyright 2003 Jon Griffiths + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_DUTCH, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_TRUE "Waar" + IDS_FALSE "Onwaar" + IDS_YES "Ja" + IDS_NO "Nee" + IDS_ON "Aan" + IDS_OFF "Uit" +} Property changes on: trunk/reactos/lib/oleaut32/oleaut32_Nl.rc ___________________________________________________________________ Name: svn:eol-style + native _____
Modified: trunk/reactos/lib/oleaut32/oleaut32_No.rc [truncated at 1000 lines; 949 more skipped]