2006-02-17 00:04:10 +00:00
|
|
|
/*
|
|
|
|
* Resources for MSI
|
|
|
|
*
|
|
|
|
* Copyright 2005 Mike McCormack
|
|
|
|
*
|
|
|
|
* 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
|
2006-08-01 23:12:11 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2006-02-17 00:04:10 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-04 23:30:58 +00:00
|
|
|
#include "windef.h"
|
2017-10-08 08:14:40 +00:00
|
|
|
#include "resource.h"
|
2010-03-06 09:05:09 +00:00
|
|
|
|
2006-10-22 20:23:59 +00:00
|
|
|
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|
|
|
|
2008-05-17 19:46:01 +00:00
|
|
|
/* @makedep: msiserver.tlb */
|
Finish the Wine sync. These components are not just rc file changes
atl, comctl32, comdlg32, dwmapi, fusion, gdiplus, jscript, mpr, mshtml, msi, msimtf, msxml3, ole32, oleaut32, riched20, shdocvw, shlwapi, urlmon, usp10, version and windowscodecs
Seems to build and boot. /me hides
svn path=/trunk/; revision=48273
2010-07-26 02:26:04 +00:00
|
|
|
1 TYPELIB msiserver.tlb
|
2008-01-16 10:11:22 +00:00
|
|
|
|
2012-01-23 20:59:35 +00:00
|
|
|
/* @makedep: msiserver.rgs */
|
|
|
|
2 WINE_REGISTRY msiserver.rgs
|
|
|
|
|
2014-04-23 14:48:52 +00:00
|
|
|
3 WINE_REGISTRY msiserver_r.rgs
|
|
|
|
|
|
|
|
4 WINE_REGISTRY msiserver_t.rgs
|
2012-01-23 21:40:37 +00:00
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/* @makedep: instadvert.bmp */
|
2006-08-01 23:12:11 +00:00
|
|
|
0x1001 BITMAP instadvert.bmp
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/* @makedep: instabsent.bmp */
|
2006-08-01 23:12:11 +00:00
|
|
|
0x1002 BITMAP instabsent.bmp
|
|
|
|
|
2008-01-16 10:11:22 +00:00
|
|
|
/* @makedep: instlocal.bmp */
|
2006-08-01 23:12:11 +00:00
|
|
|
0x1003 BITMAP instlocal.bmp
|
2011-03-20 08:47:41 +00:00
|
|
|
|
|
|
|
#define WINE_FILEDESCRIPTION_STR "Wine MSI dll"
|
|
|
|
#define WINE_FILENAME_STR "msi.dll"
|
2015-03-09 20:28:19 +00:00
|
|
|
#define WINE_FILEVERSION 4,5,6001,22308
|
|
|
|
#define WINE_FILEVERSION_STR "4.5.6001.22308"
|
|
|
|
#define WINE_PRODUCTVERSION 4,5,6001,22308
|
|
|
|
#define WINE_PRODUCTVERSION_STR "4.5.6001.22308"
|
2011-03-20 08:47:41 +00:00
|
|
|
|
2018-03-04 23:30:58 +00:00
|
|
|
#include "wine/wine_common_ver.rc"
|
2017-10-08 08:14:40 +00:00
|
|
|
|
|
|
|
#include "rsrc.rc"
|