https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fc0a0b9f84e1f284914b4…
commit fc0a0b9f84e1f284914b4576305cbf11c9015ad6
Author: Hervé Poussineau <hpoussin(a)reactos.org>
AuthorDate: Sat May 9 16:53:00 2020 +0200
Commit: Hervé Poussineau <hpoussin(a)reactos.org>
CommitDate: Sat May 9 16:54:46 2020 +0200
[ISAPNP] Mark Read Data Port as not having a unique ID
This fixes a bugcheck in ntoskrnl.exe when computer has multiple ISA buses.
CORE-17034
---
drivers/bus/isapnp/pdo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/bus/isapnp/pdo.c b/drivers/bus/isapnp/pdo.c
index 6651cc54710..87eea2d9012 100644
--- a/drivers/bus/isapnp/pdo.c
+++ b/drivers/bus/isapnp/pdo.c
@@ -64,7 +64,7 @@ IsaPdoQueryCapabilities(
}
else
{
- DeviceCapabilities->UniqueID = TRUE;
+ DeviceCapabilities->UniqueID = FALSE;
DeviceCapabilities->RawDeviceOK = TRUE;
DeviceCapabilities->SilentInstall = TRUE;
}
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e2fdfae24fdfc166810fe…
commit e2fdfae24fdfc166810fe2d06404bfc3d9b6bf57
Author: Jared Smudde <computerwhiz02(a)hotmail.com>
AuthorDate: Sat May 9 07:50:20 2020 -0500
Commit: GitHub <noreply(a)github.com>
CommitDate: Sat May 9 21:50:20 2020 +0900
[COMDLG32] Add some more places to the places bar in the open file dialog. (#2732)
Add Recent Documents and My Network Places to the places bar in the open file dialog.
NOTE: Technically this "places bar" can be customized:
https://www.tenforums.com/tutorials/126153-change-places-bar-items-common-d…https://www.sevenforums.com/tutorials/85487-common-file-dialog-box-customiz…
---
dll/win32/comdlg32/filedlg.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/dll/win32/comdlg32/filedlg.c b/dll/win32/comdlg32/filedlg.c
index 1847d837c09..af3c5c4a3ac 100644
--- a/dll/win32/comdlg32/filedlg.c
+++ b/dll/win32/comdlg32/filedlg.c
@@ -305,9 +305,17 @@ static void filedlg_collect_places_pidls(FileOpenDlgInfos *fodInfos)
{
static const int default_places[] =
{
+#ifdef __REACTOS__
+ CSIDL_RECENT,
CSIDL_DESKTOP,
CSIDL_MYDOCUMENTS,
CSIDL_DRIVES,
+ CSIDL_NETWORK,
+#else
+ CSIDL_DESKTOP,
+ CSIDL_MYDOCUMENTS,
+ CSIDL_DRIVES,
+#endif
};
unsigned int i;
HKEY hkey;