From 4254ef0090342c9b2431679435e545a97a71da0c Mon Sep 17 00:00:00 2001 From: Robert Naumann Date: Sat, 21 Nov 2015 12:49:38 +0000 Subject: [PATCH] [EXPLORER] Stubplement and show the "customize classic start menu" dialog svn path=/trunk/; revision=69992 --- reactos/base/shell/explorer/CMakeLists.txt | 1 + reactos/base/shell/explorer/precomp.h | 6 +++ reactos/base/shell/explorer/startmnucust.cpp | 51 ++++++++++++++++++++ reactos/base/shell/explorer/trayprop.cpp | 11 +++++ 4 files changed, 69 insertions(+) create mode 100644 reactos/base/shell/explorer/startmnucust.cpp diff --git a/reactos/base/shell/explorer/CMakeLists.txt b/reactos/base/shell/explorer/CMakeLists.txt index ce8f50c07c66c..d7fead80292c2 100644 --- a/reactos/base/shell/explorer/CMakeLists.txt +++ b/reactos/base/shell/explorer/CMakeLists.txt @@ -13,6 +13,7 @@ list(APPEND SOURCE startctxmnu.cpp startmnu.cpp startmnusite.cpp + startmnucust.cpp startup.cpp taskband.cpp taskswnd.cpp diff --git a/reactos/base/shell/explorer/precomp.h b/reactos/base/shell/explorer/precomp.h index 3b8954f095d48..c137349585810 100644 --- a/reactos/base/shell/explorer/precomp.h +++ b/reactos/base/shell/explorer/precomp.h @@ -315,6 +315,12 @@ IN BOOL bSmallIcons); HRESULT CreateStartMenuSite(IN OUT ITrayWindow *Tray, const IID & riid, PVOID * ppv); +/* + * startmnucust.cpp + */ +VOID +ShowCustomizeClassic(HINSTANCE, HWND); + /* * trayntfy.c */ diff --git a/reactos/base/shell/explorer/startmnucust.cpp b/reactos/base/shell/explorer/startmnucust.cpp new file mode 100644 index 0000000000000..e1d5e5f7acc94 --- /dev/null +++ b/reactos/base/shell/explorer/startmnucust.cpp @@ -0,0 +1,51 @@ +/* + * ReactOS Explorer + * + * Copyright 2006 - 2007 Thomas Weidenmueller + * 2015 Robert Naumann