mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[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-dialog-box-windows.html https://www.sevenforums.com/tutorials/85487-common-file-dialog-box-customize-places-bar.html
This commit is contained in:
parent
295ba62820
commit
e2fdfae24f
1 changed files with 8 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue