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#include <commctrl.h> 22 23#include "resource.h" 24 25LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT 26 27ID_AXINSTALL_WARNING_DLG DIALOGEX 0, 0, 260, 115 28STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU 29CAPTION "Security Warning" 30FONT 8, "MS Shell Dlg" 31{ 32 CONTROL "Do you want to install this software?", 33 100, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 10, 10, 240, 23 34 CONTROL "Location:", 101, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 10, 26, 40, 13 35 CONTROL "", ID_AXINSTALL_LOCATION, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 50, 26, 200, 13 36 DEFPUSHBUTTON "Don't install", IDCANCEL, 200, 48, 50, 14, WS_GROUP | WS_TABSTOP 37 PUSHBUTTON "", ID_AXINSTALL_INSTALL_BTN, 144, 48, 50, 14, WS_GROUP | WS_TABSTOP | WS_DISABLED 38 CONTROL "", 102, "static", SS_ETCHEDHORZ, 10, 70, 240, 1 39 ICON "", ID_AXINSTALL_ICON, 10, 82, 32, 32, WS_CHILD | WS_VISIBLE 40 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.", 41 22002, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 46, 80, 194, 23 42} 43 44STRINGTABLE 45{ 46 IDS_AXINSTALL_FAILURE "Installation of component failed: %08x" 47 IDS_AXINSTALL_INSTALLN "Install (%d)" 48 IDS_AXINSTALL_INSTALL "Install" 49} 50 51LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL 52 53/* @makedep: urlmon.rgs */ 541 WINE_REGISTRY urlmon.rgs 55 562 WINE_REGISTRY "urlmon_urlmon.rgs" 57 58/* @makedep: urlmon.inf */ 59REGINST REGINST urlmon_utf16.inf 60 61#define WINE_FILENAME_STR "urlmon.dll" 62#define WINE_FILEVERSION 6,0,2800,1485 63#define WINE_FILEVERSION_STR "6.0.2800.1485" 64#define WINE_PRODUCTVERSION 6,0,2800,1485 65#define WINE_PRODUCTVERSION_STR "6.0.2800.1485" 66 67#include "wine/wine_common_ver.rc" 68