source: trunk/src/setupapi/setupapi.orc@ 8667

Last change on this file since 8667 was 8667, checked in by sandervl, 23 years ago

wine update

File size: 1.9 KB
Line 
1/*
2 * Top level resource file for SETUPX
3 *
4 * Copyright 2001 Andreas Mohr
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include "windef.h"
22#include "winuser.h"
23#include "winnls.h"
24#include "setupapi_private.h"
25
26/*--------------------- FIXME --------------------------
27 *
28 * These must be seperated into the language files
29 * and translated. The language 0,0 is a hack to get it
30 * loaded properly for all languages by pretending that
31 * they are neutral.
32 * The menus are not yet properly implemented.
33 * Don't localize it yet. (js)
34 */
35
36LANGUAGE 0,0
37
38COPYFILEDLGORD DIALOG LOADONCALL MOVEABLE DISCARDABLE 20, 20, 208, 105
39STYLE DS_MODALFRAME | DS_SETFONT | WS_POPUP | WS_VISIBLE | WS_CAPTION
40CAPTION "Copying Files..."
41FONT 8, "MS Sans Serif"
42BEGIN
43 PUSHBUTTON "Cancel", IDCANCEL, 79, 84, 50, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP
44 LTEXT "Source:", -1, 7, 7, 77, 11, WS_CHILD | WS_VISIBLE | WS_GROUP
45 LTEXT "", SOURCESTRORD, 7, 18, 194, 11, WS_CHILD | WS_VISIBLE | WS_GROUP
46 LTEXT "Destination:", -1, 7, 30, 77, 11, WS_CHILD | WS_VISIBLE | WS_GROUP
47 LTEXT "", DESTSTRORD, 7, 41, 194, 22, WS_CHILD | WS_VISIBLE | WS_GROUP
48 CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13, WS_CHILD | WS_VISIBLE | WS_TABSTOP
49END
Note: See TracBrowser for help on using the repository browser.