Author: hbelusca
Date: Wed Jul 27 00:48:41 2016
New Revision: 72009
URL:
http://svn.reactos.org/svn/reactos?rev=72009&view=rev
Log:
[SETUPAPI]: Implement SetupPromptForDiskA/W by importing dialog.c from Wine Staging
1.9.15.
(Add also the patch "Add patch to support IDF_CHECKFIRST in SetupPromptForDisk."
by DarkPlayer - 541cc8d08661980dfe80fe2bb9dd27c91879e09f)
Added:
trunk/reactos/dll/win32/setupapi/dialog.c (with props)
Modified:
trunk/reactos/dll/win32/setupapi/CMakeLists.txt
trunk/reactos/dll/win32/setupapi/lang/bg-BG.rc
trunk/reactos/dll/win32/setupapi/lang/cs-CZ.rc
trunk/reactos/dll/win32/setupapi/lang/da-DK.rc
trunk/reactos/dll/win32/setupapi/lang/de-DE.rc
trunk/reactos/dll/win32/setupapi/lang/en-US.rc
trunk/reactos/dll/win32/setupapi/lang/es-ES.rc
trunk/reactos/dll/win32/setupapi/lang/fi-FI.rc
trunk/reactos/dll/win32/setupapi/lang/fr-FR.rc
trunk/reactos/dll/win32/setupapi/lang/he-IL.rc
trunk/reactos/dll/win32/setupapi/lang/hu-HU.rc
trunk/reactos/dll/win32/setupapi/lang/id-ID.rc
trunk/reactos/dll/win32/setupapi/lang/it-IT.rc
trunk/reactos/dll/win32/setupapi/lang/ja-JP.rc
trunk/reactos/dll/win32/setupapi/lang/ko-KR.rc
trunk/reactos/dll/win32/setupapi/lang/nl-NL.rc
trunk/reactos/dll/win32/setupapi/lang/no-NO.rc
trunk/reactos/dll/win32/setupapi/lang/pl-PL.rc
trunk/reactos/dll/win32/setupapi/lang/pt-BR.rc
trunk/reactos/dll/win32/setupapi/lang/ro-RO.rc
trunk/reactos/dll/win32/setupapi/lang/ru-RU.rc
trunk/reactos/dll/win32/setupapi/lang/sk-SK.rc
trunk/reactos/dll/win32/setupapi/lang/sq-AL.rc
trunk/reactos/dll/win32/setupapi/lang/sv-SE.rc
trunk/reactos/dll/win32/setupapi/lang/th-TH.rc
trunk/reactos/dll/win32/setupapi/lang/tr-TR.rc
trunk/reactos/dll/win32/setupapi/lang/uk-UA.rc
trunk/reactos/dll/win32/setupapi/lang/zh-CN.rc
trunk/reactos/dll/win32/setupapi/lang/zh-TW.rc
trunk/reactos/dll/win32/setupapi/resource.h
trunk/reactos/dll/win32/setupapi/setupapi_private.h
trunk/reactos/dll/win32/setupapi/stubs.c
trunk/reactos/media/doc/README.WINE
Modified: trunk/reactos/dll/win32/setupapi/CMakeLists.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/CMakeLi…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/CMakeLists.txt [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/CMakeLists.txt [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -16,6 +16,7 @@
cfgmgr.c
devclass.c
devinst.c
+ dialog.c
dirid.c
diskspace.c
driver.c
@@ -40,7 +41,7 @@
set_module_type(setupapi win32dll UNICODE)
target_link_libraries(setupapi uuid wine ${PSEH_LIB})
-add_delay_importlibs(setupapi shell32 winspool wintrust)
+add_delay_importlibs(setupapi comdlg32 shell32 winspool wintrust)
add_importlibs(setupapi gdi32 comctl32 advapi32 user32 rpcrt4 version msvcrt kernel32
ntdll)
add_pch(setupapi setupapi_private.h SOURCE)
add_cd_file(TARGET setupapi DESTINATION reactos/system32 FOR all)
Added: trunk/reactos/dll/win32/setupapi/dialog.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/dialog.…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/dialog.c (added)
+++ trunk/reactos/dll/win32/setupapi/dialog.c [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -0,0 +1,281 @@
+/*
+ * SetupAPI dialog functions
+ *
+ * Copyright 2009 Ricardo Filipe
+ *
+ * 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
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include "setupapi_private.h"
+
+struct promptdisk_params {
+ PCWSTR DialogTitle;
+ PCWSTR DiskName;
+ PCWSTR PathToSource;
+ PCWSTR FileSought;
+ PCWSTR TagFile;
+ DWORD DiskPromptStyle;
+ PWSTR PathBuffer;
+ DWORD PathBufferSize;
+ PDWORD PathRequiredSize;
+};
+
+/* initiates the fields of the SetupPromptForDisk dialog according to the parameters
+*/
+static void promptdisk_init(HWND hwnd, struct promptdisk_params *params)
+{
+ SetWindowLongPtrW(hwnd, DWLP_USER, (LONG_PTR)params);
+
+ if(params->DialogTitle)
+ SetWindowTextW(hwnd, params->DialogTitle);
+ if(params->PathToSource)
+ SetDlgItemTextW(hwnd, IDC_PATH, params->PathToSource);
+
+ if(!(params->DiskPromptStyle & IDF_OEMDISK))
+ {
+ WCHAR message[256+2*MAX_PATH];
+ WCHAR format[256];
+ WCHAR unknown[256];
+ DWORD_PTR args[2];
+ LoadStringW(hInstance, IDS_PROMPTDISK, format,
+ sizeof(format)/sizeof(format[0]));
+
+ args[0] = (DWORD_PTR)params->FileSought;
+ if(params->DiskName)
+ args[1] = (DWORD_PTR)params->DiskName;
+ else
+ {
+ LoadStringW(hInstance, IDS_UNKNOWN, unknown,
+ sizeof(unknown)/sizeof(unknown[0]));
+ args[1] = (DWORD_PTR)unknown;
+ }
+ FormatMessageW(FORMAT_MESSAGE_FROM_STRING|FORMAT_MESSAGE_ARGUMENT_ARRAY,
+ format, 0, 0, message, sizeof(message)/sizeof(*message),
+ (__ms_va_list*)args);
+ SetDlgItemTextW(hwnd, IDC_FILENEEDED, message);
+
+ LoadStringW(hInstance, IDS_INFO, message,
+ sizeof(message)/sizeof(message[0]));
+ SetDlgItemTextW(hwnd, IDC_INFO, message);
+ LoadStringW(hInstance, IDS_COPYFROM, message,
+ sizeof(message)/sizeof(message[0]));
+ SetDlgItemTextW(hwnd, IDC_COPYFROM, message);
+ }
+ if(params->DiskPromptStyle & IDF_NOBROWSE)
+ ShowWindow(GetDlgItem(hwnd, IDC_RUNDLG_BROWSE), SW_HIDE);
+}
+
+/* When the user clicks in the Ok button in SetupPromptForDisk dialog
+ * if the parameters are good it copies the path from the dialog to the output buffer
+ * saves the required size for the buffer if PathRequiredSize is given
+ * returns NO_ERROR if there is no PathBuffer to copy too
+ * returns DPROMPT_BUFFERTOOSMALL if the path is too big to fit in PathBuffer
+ */
+static void promptdisk_ok(HWND hwnd, struct promptdisk_params *params)
+{
+ int requiredSize;
+ WCHAR aux[MAX_PATH];
+ GetWindowTextW(GetDlgItem(hwnd, IDC_PATH), aux, MAX_PATH);
+ requiredSize = strlenW(aux)+1;
+
+ if(params->PathRequiredSize)
+ {
+ *params->PathRequiredSize = requiredSize;
+ TRACE("returning PathRequiredSize=%d\n",*params->PathRequiredSize);
+ }
+ if(!params->PathBuffer)
+ {
+ EndDialog(hwnd, NO_ERROR);
+ return;
+ }
+ if(requiredSize > params->PathBufferSize)
+ {
+ EndDialog(hwnd, DPROMPT_BUFFERTOOSMALL);
+ return;
+ }
+ strcpyW(params->PathBuffer, aux);
+ TRACE("returning PathBuffer=%s\n", debugstr_w(params->PathBuffer));
+ EndDialog(hwnd, DPROMPT_SUCCESS);
+}
+
+/* When the user clicks the browse button in SetupPromptForDisk dialog
+ * it copies the path of the selected file to the dialog path field
+ */
+static void promptdisk_browse(HWND hwnd, struct promptdisk_params *params)
+{
+ OPENFILENAMEW ofn;
+ ZeroMemory(&ofn, sizeof(ofn));
+
+ ofn.lStructSize = sizeof(ofn);
+ ofn.Flags = OFN_HIDEREADONLY | OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
+ ofn.hwndOwner = hwnd;
+ ofn.nMaxFile = MAX_PATH;
+ ofn.lpstrFile = HeapAlloc(GetProcessHeap(), 0, MAX_PATH*sizeof(WCHAR));
+ strcpyW(ofn.lpstrFile, params->FileSought);
+
+ if(GetOpenFileNameW(&ofn))
+ {
+ WCHAR* last_slash = strrchrW(ofn.lpstrFile, '\\');
+ if (last_slash) *last_slash = 0;
+ SetDlgItemTextW(hwnd, IDC_PATH, ofn.lpstrFile);
+ }
+ HeapFree(GetProcessHeap(), 0, ofn.lpstrFile);
+}
+
+/* Handles the messages sent to the SetupPromptForDisk dialog
+*/
+static INT_PTR CALLBACK promptdisk_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
lParam)
+{
+ switch(msg)
+ {
+ case WM_INITDIALOG:
+ promptdisk_init(hwnd, (struct promptdisk_params *)lParam);
+ return TRUE;
+ case WM_COMMAND:
+ switch(wParam)
+ {
+ case IDOK:
+ {
+ struct promptdisk_params *params =
+ (struct promptdisk_params *)GetWindowLongPtrW(hwnd, DWLP_USER);
+ promptdisk_ok(hwnd, params);
+ return TRUE;
+ }
+ case IDCANCEL:
+ EndDialog(hwnd, DPROMPT_CANCEL);
+ return TRUE;
+ case IDC_RUNDLG_BROWSE:
+ {
+ struct promptdisk_params *params =
+ (struct promptdisk_params *)GetWindowLongPtrW(hwnd, DWLP_USER);
+ promptdisk_browse(hwnd, params);
+ return TRUE;
+ }
+ }
+ }
+ return FALSE;
+}
+
+/***********************************************************************
+ * SetupPromptForDiskA (SETUPAPI.@)
+ */
+UINT WINAPI SetupPromptForDiskA(HWND hwndParent, PCSTR DialogTitle, PCSTR DiskName,
+ PCSTR PathToSource, PCSTR FileSought, PCSTR TagFile, DWORD DiskPromptStyle,
+ PSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
+{
+ WCHAR *DialogTitleW, *DiskNameW, *PathToSourceW;
+ WCHAR *FileSoughtW, *TagFileW, PathBufferW[MAX_PATH];
+ UINT ret, length;
+
+ TRACE("%p, %s, %s, %s, %s, %s, 0x%08x, %p, %d, %p\n", hwndParent,
debugstr_a(DialogTitle),
+ debugstr_a(DiskName), debugstr_a(PathToSource), debugstr_a(FileSought),
+ debugstr_a(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
+ PathRequiredSize);
+
+ DialogTitleW = strdupAtoW(DialogTitle);
+ DiskNameW = strdupAtoW(DiskName);
+ PathToSourceW = strdupAtoW(PathToSource);
+ FileSoughtW = strdupAtoW(FileSought);
+ TagFileW = strdupAtoW(TagFile);
+
+ ret = SetupPromptForDiskW(hwndParent, DialogTitleW, DiskNameW, PathToSourceW,
+ FileSoughtW, TagFileW, DiskPromptStyle, PathBufferW, MAX_PATH,
PathRequiredSize);
+
+ HeapFree(GetProcessHeap(), 0, DialogTitleW);
+ HeapFree(GetProcessHeap(), 0, DiskNameW);
+ HeapFree(GetProcessHeap(), 0, PathToSourceW);
+ HeapFree(GetProcessHeap(), 0, FileSoughtW);
+ HeapFree(GetProcessHeap(), 0, TagFileW);
+
+ if(ret == DPROMPT_SUCCESS)
+ {
+ length = WideCharToMultiByte(CP_ACP, 0, PathBufferW, -1, NULL, 0, NULL, NULL);
+ if(PathRequiredSize) *PathRequiredSize = length;
+ if(PathBuffer)
+ {
+ if(length > PathBufferSize)
+ return DPROMPT_BUFFERTOOSMALL;
+ WideCharToMultiByte(CP_ACP, 0, PathBufferW, -1, PathBuffer, length, NULL,
NULL);
+ }
+ }
+ return ret;
+}
+
+/***********************************************************************
+ * SetupPromptForDiskW (SETUPAPI.@)
+ */
+UINT WINAPI SetupPromptForDiskW(HWND hwndParent, PCWSTR DialogTitle, PCWSTR DiskName,
+ PCWSTR PathToSource, PCWSTR FileSought, PCWSTR TagFile, DWORD DiskPromptStyle,
+ PWSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
+{
+ struct promptdisk_params params;
+ UINT ret;
+
+ TRACE("%p, %s, %s, %s, %s, %s, 0x%08x, %p, %d, %p\n", hwndParent,
debugstr_w(DialogTitle),
+ debugstr_w(DiskName), debugstr_w(PathToSource), debugstr_w(FileSought),
+ debugstr_w(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
+ PathRequiredSize);
+
+ if(!FileSought)
+ {
+ SetLastError(ERROR_INVALID_PARAMETER);
+ return DPROMPT_CANCEL;
+ }
+
+ if (PathToSource && (DiskPromptStyle & IDF_CHECKFIRST))
+ {
+ static const WCHAR format[] = {'%', 's', '\\',
'%', 's', '\0'};
+ WCHAR filepath[MAX_PATH];
+
+ if (strlenW(PathToSource) + 1 + strlenW(FileSought) < sizeof(filepath))
+ {
+ snprintfW(filepath, MAX_PATH, format, PathToSource, FileSought);
+
+ if (GetFileAttributesW(filepath) != INVALID_FILE_ATTRIBUTES)
+ {
+ if (PathRequiredSize)
+ *PathRequiredSize = strlenW(PathToSource) + 1;
+
+ if (!PathBuffer)
+ return DPROMPT_SUCCESS;
+
+ if (PathBufferSize >= strlenW(PathToSource) + 1)
+ {
+ strcpyW(PathBuffer, PathToSource);
+ return DPROMPT_SUCCESS;
+ }
+ else
+ return DPROMPT_BUFFERTOOSMALL;
+ }
+ }
+ }
+
+ params.DialogTitle = DialogTitle;
+ params.DiskName = DiskName;
+ params.PathToSource = PathToSource;
+ params.FileSought = FileSought;
+ params.TagFile = TagFile;
+ params.DiskPromptStyle = DiskPromptStyle;
+ params.PathBuffer = PathBuffer;
+ params.PathBufferSize = PathBufferSize;
+ params.PathRequiredSize = PathRequiredSize;
+
+ ret = DialogBoxParamW(hInstance, MAKEINTRESOURCEW(IDPROMPTFORDISK),
+ hwndParent, promptdisk_proc, (LPARAM)¶ms);
+
+ if(ret == DPROMPT_CANCEL)
+ SetLastError(ERROR_CANCELLED);
+ return ret;
+}
Propchange: trunk/reactos/dll/win32/setupapi/dialog.c
------------------------------------------------------------------------------
svn:eol-style = native
Modified: trunk/reactos/dll/win32/setupapi/lang/bg-BG.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/bg…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/bg-BG.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/bg-BG.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "ТÑÑбва да пÑезапÑÑнеÑе
компÑÑÑÑа, за да пÑиклÑÑено ÑлаганеÑо. ÐÑкаÑе ли
да го напÑавиÑе?"
Modified: trunk/reactos/dll/win32/setupapi/lang/cs-CZ.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/cs…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/cs-CZ.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/cs-CZ.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -19,6 +19,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Aby mohla být instalace dokonÄena, musà být
poÄÃtaÄ restartován. PokraÄovat?"
Modified: trunk/reactos/dll/win32/setupapi/lang/da-DK.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/da…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/da-DK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/da-DK.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/de-DE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/de…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/de-DE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/de-DE.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Ihr Computer muss zum Beenden der Installation neu
gestartet werden. Wollen Sie fortfahren?"
Modified: trunk/reactos/dll/win32/setupapi/lang/en-US.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/en…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/en-US.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/en-US.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/es-ES.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/es…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/es-ES.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/es-ES.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Su equipo debe ser reinicializada para completar la
instalación. ¿Desea continuar?"
Modified: trunk/reactos/dll/win32/setupapi/lang/fi-FI.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/fi…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/fi-FI.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/fi-FI.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/fr-FR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/fr…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/fr-FR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/fr-FR.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Votre ordinateur doit être redémarré pour terminer
l'installation. Voulez-vous redémarrer ?"
Modified: trunk/reactos/dll/win32/setupapi/lang/he-IL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/he…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/he-IL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/he-IL.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "צר×× ××פע×× ×××ש ×ת ××ש×× ×××
×ס××× ×ת ×××ª×§× ×. ××× ×רצ×× × ×××ש××?"
Modified: trunk/reactos/dll/win32/setupapi/lang/hu-HU.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/hu…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/hu-HU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/hu-HU.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "A számÃtógépet újra kell indÃtani a telepÃtés
befejezéséhez. Szeretnéd most újraindÃtani?"
Modified: trunk/reactos/dll/win32/setupapi/lang/id-ID.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/id…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/id-ID.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/id-ID.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Komputer anda perlu di-boot ulang untuk menyelesaikan
instalasi. Anda ingin melakukannya?"
Modified: trunk/reactos/dll/win32/setupapi/lang/it-IT.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/it…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/it-IT.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/it-IT.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Il computer deve essere riavviato per completare
l'installazione. Volete procedere?"
Modified: trunk/reactos/dll/win32/setupapi/lang/ja-JP.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/ja…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/ja-JP.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/ja-JP.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/ko-KR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/ko…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/ko-KR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/ko-KR.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/nl-NL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/nl…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/nl-NL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/nl-NL.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/no-NO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/no…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/no-NO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/no-NO.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Din datamaskin trenger å startes på nytt for å
fullføre installasjonen. Vil du starte på nytt?"
Modified: trunk/reactos/dll/win32/setupapi/lang/pl-PL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/pl…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/pl-PL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/pl-PL.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Twój komputer musi zostaÄ zrestartowany, by ukoÅczyÄ
instalacjÄ. Czy chcesz kontynuowaÄ?"
Modified: trunk/reactos/dll/win32/setupapi/lang/pt-BR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/pt…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/pt-BR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/pt-BR.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -28,6 +28,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/ro-RO.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/ro…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/ro-RO.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/ro-RO.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Este necesarÄ repornirea calculatorului pentru a
finaliza instalarea. ContinuaÈi?"
Modified: trunk/reactos/dll/win32/setupapi/lang/ru-RU.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/ru…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/ru-RU.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/ru-RU.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "ÐÐ°Ñ ÐºÐ¾Ð¼Ð¿ÑÑÑÐµÑ Ð´Ð¾Ð»Ð¶ÐµÐ½ бÑÑÑ
пеÑезагÑÑжен, ÑÑÐ¾Ð±Ñ Ð·Ð°Ð²ÐµÑÑиÑÑ ÑÑÑановкÑ.
ÐÑодолжиÑÑ?"
Modified: trunk/reactos/dll/win32/setupapi/lang/sk-SK.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/sk…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/sk-SK.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/sk-SK.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -18,6 +18,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Pre dokonÄenie inÅ¡talácie je potrebné reÅ¡tartovaÅ¥
poÄÃtaÄ. Chcete pokraÄovaÅ¥?"
Modified: trunk/reactos/dll/win32/setupapi/lang/sq-AL.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/sq…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/sq-AL.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/sq-AL.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -17,6 +17,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Kompjuteri juaj duhet të rifillohet për të përfunduar
instalimin. A doni të vazhdoni?"
Modified: trunk/reactos/dll/win32/setupapi/lang/sv-SE.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/sv…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/sv-SE.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/sv-SE.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Your computer needs to be rebooted to finish
installation. Do you want to proceed?"
Modified: trunk/reactos/dll/win32/setupapi/lang/th-TH.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/th…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/th-TH.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/th-TH.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT
"à¹à¸¡à¸·à¹à¸à¹à¸ªà¸£à¹à¸à¸ªà¸´à¹à¸à¸à¸²à¸£à¸à¸´à¸à¸à¸±à¹à¸à¹à¸¥à¹à¸§
à¸à¸à¸¡à¸à¸´à¸§à¹à¸à¸à¸£à¹à¸à¸à¸à¸à¸¸à¸à¸à¸³à¹à¸à¹à¸à¸à¹à¸à¸à¹à¸à¸´à¸à¹à¸à¸£à¸·à¹à¸à¸à¹à¸«à¸¡à¹/n/n
à¸à¸¸à¸à¸à¹à¸à¸à¸à¸²à¸£à¹à¸à¸´à¸à¹à¸à¸£à¸·à¹à¸à¸à¹à¸«à¸¡à¹à¹à¸à¸µà¹à¸¢à¸§à¸à¸µà¹à¹à¸¥à¸¢à¸«à¸£à¸·à¸à¹à¸¡à¹?"
Modified: trunk/reactos/dll/win32/setupapi/lang/tr-TR.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/tr…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/tr-TR.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/tr-TR.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -13,6 +13,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "Bilgisayarınız kurulumunuz bitirilmesi için yeniden
baÅlatılacak. Onaylıyor musunuz?"
Modified: trunk/reactos/dll/win32/setupapi/lang/uk-UA.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/uk…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/uk-UA.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/uk-UA.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -21,6 +21,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "ÐÐ»Ñ Ð·Ð°ÐºÑнÑÐµÐ½Ð½Ñ ÑÑÑановки необÑ
Ñдно пеÑезапÑÑÑиÑи ÐÐ°Ñ ÐºÐ¾Ð¼Ð¿'ÑÑеÑ.
ÐÑодовжиÑи?"
Modified: trunk/reactos/dll/win32/setupapi/lang/zh-CN.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/zh…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/zh-CN.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/zh-CN.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -15,6 +15,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT "æ¨ç计ç®æºéè¦éæ°å¯å¨æè½å®æå®è£
ãæ¨è¦ç»§ç»åï¼"
Modified: trunk/reactos/dll/win32/setupapi/lang/zh-TW.rc
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/lang/zh…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/lang/zh-TW.rc [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/lang/zh-TW.rc [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -15,6 +15,28 @@
CONTROL "", PROGRESSORD, "setupx_progress", 7, 63, 194, 13,
WS_CHILD | WS_VISIBLE | WS_TABSTOP
END
+IDPROMPTFORDISK DIALOG 0, 0, 260, 120
+STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
+CAPTION "Files Needed"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ LTEXT "Insert the manufacturer's installation disk, and then\nmake sure the
correct drive is selected below", IDC_FILENEEDED, 10, 10, 175, 38, WS_CHILD |
WS_VISIBLE | WS_GROUP
+ LTEXT "", IDC_INFO, 10, 50, 175, 38, WS_CHILD | WS_VISIBLE | WS_GROUP
+ LTEXT "Copy manufacturer's files from:", IDC_COPYFROM, 10, 90, 175, 11,
WS_CHILD | WS_VISIBLE | WS_GROUP
+ CONTROL "", IDC_PATH, "COMBOBOX", WS_TABSTOP | WS_GROUP |
WS_VSCROLL | WS_VISIBLE | CBS_DISABLENOSCROLL | CBS_AUTOHSCROLL | CBS_DROPDOWN, 10, 100,
175, 14
+ DEFPUSHBUTTON "OK", IDOK, 195, 10, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Cancel", IDCANCEL, 195, 30, 60, 14, WS_CHILD | WS_VISIBLE |
WS_TABSTOP
+ PUSHBUTTON "Browse...", IDC_RUNDLG_BROWSE, 195, 100, 60, 14, WS_CHILD |
WS_VISIBLE | WS_TABSTOP
+END
+
+STRINGTABLE
+BEGIN
+ IDS_PROMPTDISK "The file '%1' on %2 is needed"
+ IDS_UNKNOWN "Unknown"
+ IDS_COPYFROM "Copy files from:"
+ IDS_INFO "Type the path where the file is located, and then click
OK."
+END
+
STRINGTABLE
BEGIN
IDS_QUERY_REBOOT_TEXT
"æ¨çè¨ç®æ©éè¦éæ°ååæè½å®æå®è£ãæ¨è¦ç¹¼çºåï¼"
Modified: trunk/reactos/dll/win32/setupapi/resource.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/resourc…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/resource.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/resource.h [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -1,4 +1,15 @@
#pragma once
+
+#define IDC_FILENEEDED 503
+#define IDC_INFO 504
+#define IDC_COPYFROM 505
+#define IDC_PATH 506
+#define IDC_RUNDLG_BROWSE 507
+
+#define IDS_PROMPTDISK 508
+#define IDS_UNKNOWN 509
+#define IDS_COPYFROM 510
+#define IDS_INFO 511
#define IDS_QUERY_REBOOT_TEXT 1000
#define IDS_QUERY_REBOOT_CAPTION 2000
@@ -8,6 +19,8 @@
#define SOURCESTRORD 3001
#define DESTSTRORD 3002
#define PROGRESSORD 3003
+
+#define IDPROMPTFORDISK 3004
#define IDI_SETUPAPI_DISP_ADAPT 1
#define IDI_SETUPAPI_MOUSE 2
Modified: trunk/reactos/dll/win32/setupapi/setupapi_private.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/setupap…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/setupapi_private.h [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/setupapi_private.h [iso-8859-1] Wed Jul 27 00:48:41
2016
@@ -30,10 +30,14 @@
#include <windef.h>
#include <winbase.h>
+#include <winuser.h>
+#include <wingdi.h>
#include <winreg.h>
-#include <wingdi.h>
#include <winspool.h>
#include <wincon.h>
+
+#include <commdlg.h>
+
#include <objbase.h>
#include <cfgmgr32.h>
#include <regstr.h>
@@ -53,6 +57,8 @@
#ifdef __REACTOS__
#undef __WINESRC__
#endif
+
+#include "resource.h"
#define SETUP_DEVICE_INFO_SET_MAGIC 0xd00ff057
#define SETUP_CLASS_IMAGE_LIST_MAGIC 0xd00ff058
@@ -240,6 +246,16 @@
};
extern HINSTANCE hInstance;
+extern OSVERSIONINFOEXW OsVersionInfo;
+
+/*
+ * See:
https://msdn.microsoft.com/en-us/library/bb432397(v=vs.85).aspx
+ * for more information.
+ */
+extern DWORD GlobalSetupFlags;
+#define PSPGF_NO_BACKUP 0x0002
+#define PSPGF_NONINTERACTIVE 0x0004
+
#define RC_STRING_MAX_SIZE 256
#define REG_INSTALLEDFILES
"System\\CurrentControlSet\\Control\\InstalledFiles"
@@ -280,17 +296,6 @@
#define _S_IWRITE 0x0080
#define _S_IREAD 0x0100
-extern HINSTANCE hInstance;
-extern OSVERSIONINFOEXW OsVersionInfo;
-
-/*
- * See:
https://msdn.microsoft.com/en-us/library/bb432397(v=vs.85).aspx
- * for more information.
- */
-extern DWORD GlobalSetupFlags;
-#define PSPGF_NO_BACKUP 0x0002
-#define PSPGF_NONINTERACTIVE 0x0004
-
/* devinst.c */
BOOL
Modified: trunk/reactos/dll/win32/setupapi/stubs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/stubs.c…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/stubs.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/setupapi/stubs.c [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -56,33 +56,6 @@
return FALSE;
}
-/***********************************************************************
- * SetupPromptForDiskA (SETUPAPI.@)
- */
-UINT WINAPI SetupPromptForDiskA(HWND hwndParent, PCSTR DialogTitle, PCSTR DiskName,
- PCSTR PathToSource, PCSTR FileSought, PCSTR TagFile, DWORD DiskPromptStyle,
- PSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
-{
- FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent,
debugstr_a(DialogTitle),
- debugstr_a(DiskName), debugstr_a(PathToSource), debugstr_a(FileSought),
- debugstr_a(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
- PathRequiredSize);
- return 0;
-}
-
-/***********************************************************************
- * SetupPromptForDiskW (SETUPAPI.@)
- */
-UINT WINAPI SetupPromptForDiskW(HWND hwndParent, PCWSTR DialogTitle, PCWSTR DiskName,
- PCWSTR PathToSource, PCWSTR FileSought, PCWSTR TagFile, DWORD DiskPromptStyle,
- PWSTR PathBuffer, DWORD PathBufferSize, PDWORD PathRequiredSize)
-{
- FIXME("%p %s %s %s %s %s %d %p %d %p: stub\n", hwndParent,
debugstr_w(DialogTitle),
- debugstr_w(DiskName), debugstr_w(PathToSource), debugstr_w(FileSought),
- debugstr_w(TagFile), DiskPromptStyle, PathBuffer, PathBufferSize,
- PathRequiredSize);
- return 0;
-}
/***********************************************************************
* SetupDiRemoveDevice(SETUPAPI.@)
Modified: trunk/reactos/media/doc/README.WINE
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/media/doc/README.WINE?rev=…
==============================================================================
--- trunk/reactos/media/doc/README.WINE [iso-8859-1] (original)
+++ trunk/reactos/media/doc/README.WINE [iso-8859-1] Wed Jul 27 00:48:41 2016
@@ -338,6 +338,7 @@
reactos/dll/win32/secur32/wrapper.c # Synced to WineStaging-1.9.4
setupapi -
+ reactos/dll/win32/setupapi/dialog.c # Synced to WineStaging-1.9.15
reactos/dll/win32/setupapi/query.c # Partially synced to WineStaging-1.9.4
reactos/dll/win32/setupapi/setupcab.c # Synced to WineStaging-1.9.4