mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:13:00 +00:00
[EXPLORER] Don't use Explorers ID_SHELL_CMD IDs in IShellFolder menu (#6872)
Explorer does not control the IDs used by CFSFolder::QueryContext menu and therefore cannot share its ID range with it. The range passed to CFSFolder::QueryContext also cannot start at 0 because CTrayWindow::TrackCtxMenu would interpret that as user cancel.
This commit is contained in:
parent
a6298b5c7a
commit
43b3280f69
3 changed files with 45 additions and 40 deletions
|
@ -201,8 +201,6 @@
|
|||
#define IDMA_RESTORE_OPEN 416
|
||||
#define IDMA_MINIMIZE_ALL 419
|
||||
|
||||
#define ID_SHELL_CMD_FIRST 0xF
|
||||
#define ID_SHELL_CMD_LAST 0x7FEF
|
||||
#define ID_SHELL_CMD_PROPERTIES (401)
|
||||
#define ID_SHELL_CMD_OPEN_ALL_USERS (402)
|
||||
#define ID_SHELL_CMD_EXPLORE_ALL_USERS (403)
|
||||
|
@ -216,3 +214,5 @@
|
|||
#define ID_SHELL_CMD_CUST_NOTIF (411)
|
||||
#define ID_SHELL_CMD_ADJUST_DAT (412)
|
||||
#define ID_SHELL_CMD_RESTORE_ALL (413)
|
||||
#define ID_SHELL_CMD_FIRST ID_SHELL_CMD_PROPERTIES
|
||||
#define ID_SHELL_CMD_LAST ID_SHELL_CMD_RESTORE_ALL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue