From 80a90cc2612a6d2344ee1f63474f048ba38c5491 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Sat, 15 Dec 2007 12:03:47 +0000 Subject: [PATCH] - register Folder Options panel - add code to register printer folder svn path=/trunk/; revision=31238 --- reactos/dll/win32/shell32/regsvr.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/shell32/regsvr.c b/reactos/dll/win32/shell32/regsvr.c index 1e53cf1ff2a..28f39c1385c 100644 --- a/reactos/dll/win32/shell32/regsvr.c +++ b/reactos/dll/win32/shell32/regsvr.c @@ -728,7 +728,10 @@ static const WCHAR wszSlash[] = { '/', 0 }; static const WCHAR wszMyDocuments[] = { 'M','y',' ','D','o','c','u','m','e','n','t','s', 0 }; static const WCHAR wszRecycleBin[] = { 'T','r','a','s','h', 0 }; static const WCHAR wszMyComputer[] = { 'M','y','C','o','m','p','u','t','e','r',0 }; -static const WCHAR wszControlPanel[] = { 'C','o','n','t','r','o','l',0 }; +static const WCHAR wszControlPanel[] = { 'C','o','n','t','r','o','l','P','a','n','e','l',0 }; +static const WCHAR wszFolderOptions[] = { 'F','o','l','d','e','r',' ','O','p','t','i','o','n','s',0 }; + +const GUID CLSID_FolderOptions = { 0x6DFD7C5C, 0x2451, 0x11d3, {0xa2,0x99,0x00,0xC0,0x4F,0x8e,0xf6,0xaf} }; static struct regsvr_namespace const namespace_extensions_list[] = { #if 0 @@ -753,6 +756,18 @@ static struct regsvr_namespace const namespace_extensions_list[] = { wszMyComputer, wszControlPanel }, + { + &CLSID_FolderOptions, + wszControlPanel, + wszFolderOptions + }, +#if 0 + { + &CLSID_Printers, + wszControlPanel, + wszPrinters + }, +#endif { NULL } };