Sync to Wine-20050930:
Alexandre Julliard <julliard@winehq.org>
- Take into account -noname functions when checking for duplicate export
names. Fixed a couple of issues found by the stricter check.
- 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.
Alexander N. Sørnes <alex@thehandofagony.com>
- Added Norwegian translations.
Jacek Caban <jack@itma.pwr.wroc.pl>
- Make IPersist* interfaces heap based.
- Added IWebBrowser2 stub implementation.
- Make IProvideClassInfo2 interface heap based.
- Make IConnectionPointContainer interface heap based.
- Make WebBrowser heap based object.
- Improve stubs.
- Make IQuickActivate interface heap based.
- Added SetClientSite implementation.
- Make IOleControl and IOleInPlaceObject interface heap based.
Kimmo Myllyvirta <kimmo.myllyvirta@gmail.com>
- Added Finnish resources.
svn path=/trunk/; revision=18351
2005-10-08 19:07:39 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2004 Mike McCormack for CodeWeavers
|
|
|
|
*
|
|
|
|
* 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
|
2009-02-04 14:35:06 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
Sync to Wine-20050930:
Alexandre Julliard <julliard@winehq.org>
- Take into account -noname functions when checking for duplicate export
names. Fixed a couple of issues found by the stricter check.
- 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.
Alexander N. Sørnes <alex@thehandofagony.com>
- Added Norwegian translations.
Jacek Caban <jack@itma.pwr.wroc.pl>
- Make IPersist* interfaces heap based.
- Added IWebBrowser2 stub implementation.
- Make IProvideClassInfo2 interface heap based.
- Make IConnectionPointContainer interface heap based.
- Make WebBrowser heap based object.
- Improve stubs.
- Make IQuickActivate interface heap based.
- Added SetClientSite implementation.
- Make IOleControl and IOleInPlaceObject interface heap based.
Kimmo Myllyvirta <kimmo.myllyvirta@gmail.com>
- Added Finnish resources.
svn path=/trunk/; revision=18351
2005-10-08 19:07:39 +00:00
|
|
|
*/
|
|
|
|
|
2013-04-21 13:50:00 +00:00
|
|
|
#include <windef.h>
|
|
|
|
|
2013-11-28 22:18:05 +00:00
|
|
|
1 WINE_REGISTRY "shdocvw_v1.rgs"
|
2013-04-22 11:33:48 +00:00
|
|
|
|
2013-11-28 22:18:05 +00:00
|
|
|
1 TYPELIB "shdocvw_v1.tlb"
|
2013-04-22 11:33:48 +00:00
|
|
|
|
2013-04-21 13:50:00 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
2009-08-09 12:00:11 +00:00
|
|
|
#define WINE_FILEDESCRIPTION_STR "Wine core dll"
|
|
|
|
#define WINE_FILENAME_STR "shdocvw.dll"
|
|
|
|
#define WINE_FILEVERSION 6,0,2900,2180
|
|
|
|
#define WINE_FILEVERSION_STR "6.0.2900.2180"
|
|
|
|
#define WINE_PRODUCTVERSION 6,0,2900,2180
|
|
|
|
#define WINE_PRODUCTVERSION_STR "6.0.2900.2180"
|
2013-04-21 13:50:00 +00:00
|
|
|
#define WINE_EXTRAVALUES VALUE "OLESelfRegister",""
|
2009-08-09 12:00:11 +00:00
|
|
|
|
2013-04-21 13:50:00 +00:00
|
|
|
#include <wine/wine_common_ver.rc>
|