1/* 2 * Copyright 2005 Jacek Caban 3 * 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Lesser General Public 6 * License as published by the Free Software Foundation; either 7 * version 2.1 of the License, or (at your option) any later version. 8 * 9 * This library is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 * Lesser General Public License for more details. 13 * 14 * You should have received a copy of the GNU Lesser General Public 15 * License along with this library; if not, write to the Free Software 16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 17 */ 18 19#include <windef.h> 20#include <winuser.h> 21 22#include "resource.h" 23 24LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 25 26ID_AXINSTALL_WARNING_DLG DIALOGEX 0, 0, 260, 115 27STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 28CAPTION "Security Warning" 29FONT 8, "MS Shell Dlg" 30{ 31 CONTROL "Do you want to install this software?", 32 100, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 10, 10, 240, 23 33 CONTROL "Location:", 101, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 10, 26, 40, 13 34 CONTROL "", ID_AXINSTALL_LOCATION, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 50, 26, 200, 13 35 DEFPUSHBUTTON "Don't install", IDCANCEL, 200, 48, 50, 14, WS_GROUP | WS_TABSTOP 36 PUSHBUTTON "", ID_AXINSTALL_INSTALL_BTN, 144, 48, 50, 14, WS_GROUP | WS_TABSTOP | WS_DISABLED 37 CONTROL "", 102, "static", SS_ETCHEDHORZ, 10, 70, 240, 1 38 ICON "", ID_AXINSTALL_ICON, 10, 82, 32, 32, WS_CHILD | WS_VISIBLE 39 CONTROL "When installed, an ActiveX component has full access to your computer. Do not click install unless you have absolute trust in the above source.", 40 22002, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 46, 80, 194, 23 41} 42 43STRINGTABLE 44{ 45 IDS_AXINSTALL_FAILURE "Installation of component failed: %08x" 46 IDS_AXINSTALL_INSTALLN "Install (%d)" 47 IDS_AXINSTALL_INSTALL "Install" 48} 49 50LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 51 52/* @makedep: urlmon.rgs */ 531 WINE_REGISTRY urlmon.rgs 54 552 WINE_REGISTRY "urlmon_urlmon.rgs" 56 57/* @makedep: urlmon.inf */ 58REGINST REGINST urlmon_utf16.inf 59 60#define WINE_FILENAME_STR "urlmon.dll" 61#define WINE_FILEVERSION 6,0,2800,1485 62#define WINE_FILEVERSION_STR "6.0.2800.1485" 63#define WINE_PRODUCTVERSION 6,0,2800,1485 64#define WINE_PRODUCTVERSION_STR "6.0.2800.1485" 65 66#include "wine/wine_common_ver.rc" 67