urlmon.rc 2.52 KB
Newer Older
Jacek Caban's avatar
Jacek Caban committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright 2005 Jacek Caban
 *
 * 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
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Jacek Caban's avatar
Jacek Caban committed
17 18
 */

19 20 21 22 23 24
#include <windef.h>
#include <winuser.h>
#include <commctrl.h>

#include "resource.h"

25 26
#pragma makedep po

27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT

ID_AXINSTALL_WARNING_DLG DIALOG  0, 0, 260, 115
STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "Security Warning"
FONT 8, "MS Shell Dlg"
{
    CONTROL "Do you want to install this software?",
            100, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 10, 10, 240, 23
    CONTROL "Location:", 101, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 10, 26, 40, 13
    CONTROL "", ID_AXINSTALL_LOCATION, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 50, 26, 200, 13
    DEFPUSHBUTTON "Don't install", IDCANCEL, 200, 48, 50, 14, WS_GROUP | WS_TABSTOP
    PUSHBUTTON "", ID_AXINSTALL_INSTALL_BTN, 144, 48, 50, 14, WS_GROUP | WS_TABSTOP | WS_DISABLED
    CONTROL "", 102, "static", SS_ETCHEDHORZ, 10, 70, 240, 1
    ICON    "", ID_AXINSTALL_ICON, 10, 82, 32, 32, WS_CHILD | WS_VISIBLE
42 43 44
    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.",
45 46 47 48 49 50 51 52 53 54 55 56
            22002, "static", SS_LEFT | WS_CHILD | WS_VISIBLE, 46, 80, 194, 23
}

STRINGTABLE
{
    IDS_AXINSTALL_FAILURE    "Installation of component failed: %08x"
    IDS_AXINSTALL_INSTALLN   "Install (%d)"
    IDS_AXINSTALL_INSTALL    "Install"
}

LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL

57 58 59
/* @makedep: urlmon.rgs */
1 WINE_REGISTRY urlmon.rgs

60
/* @makedep: urlmon.inf */
Jacek Caban's avatar
Jacek Caban committed
61
REGINST REGINST urlmon.inf
62

63 64 65 66 67 68 69
#define WINE_FILENAME_STR "urlmon.dll"
#define WINE_FILEVERSION 6,0,2800,1485
#define WINE_FILEVERSION_STR "6.0.2800.1485"
#define WINE_PRODUCTVERSION 6,0,2800,1485
#define WINE_PRODUCTVERSION_STR "6.0.2800.1485"

#include "wine/wine_common_ver.rc"