├── .gitignore ├── .gitmodules ├── FrostingCfg ├── App.config ├── ExtensionCfg.cs ├── FluentFrosting.ico ├── FrostingCfg.csproj ├── LinkLabelEx.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NativeMethods.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RegistrySettings.cs └── app.manifest ├── LICENSE ├── README.md ├── ShellFrosting.sln └── frosting ├── constants.h ├── dllmain.cpp ├── framework.h ├── frosting.rc ├── frosting.vcxproj ├── frosting.vcxproj.filters ├── int ├── def │ ├── ntdllex.def │ └── shell32ex.def ├── def2lib.cmd └── include │ ├── ntdllex.h │ └── shell32ex.h ├── memfind.cpp ├── memfind.h ├── pch.cpp ├── pch.h ├── preferencefx.cpp ├── preferencefx.h └── resource.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/.gitmodules -------------------------------------------------------------------------------- /FrostingCfg/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/App.config -------------------------------------------------------------------------------- /FrostingCfg/ExtensionCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/ExtensionCfg.cs -------------------------------------------------------------------------------- /FrostingCfg/FluentFrosting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/FluentFrosting.ico -------------------------------------------------------------------------------- /FrostingCfg/FrostingCfg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/FrostingCfg.csproj -------------------------------------------------------------------------------- /FrostingCfg/LinkLabelEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/LinkLabelEx.cs -------------------------------------------------------------------------------- /FrostingCfg/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/MainForm.Designer.cs -------------------------------------------------------------------------------- /FrostingCfg/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/MainForm.cs -------------------------------------------------------------------------------- /FrostingCfg/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/MainForm.resx -------------------------------------------------------------------------------- /FrostingCfg/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/NativeMethods.cs -------------------------------------------------------------------------------- /FrostingCfg/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/Program.cs -------------------------------------------------------------------------------- /FrostingCfg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FrostingCfg/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /FrostingCfg/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/Properties/Resources.resx -------------------------------------------------------------------------------- /FrostingCfg/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FrostingCfg/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/Properties/Settings.settings -------------------------------------------------------------------------------- /FrostingCfg/RegistrySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/RegistrySettings.cs -------------------------------------------------------------------------------- /FrostingCfg/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/FrostingCfg/app.manifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/README.md -------------------------------------------------------------------------------- /ShellFrosting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/ShellFrosting.sln -------------------------------------------------------------------------------- /frosting/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/constants.h -------------------------------------------------------------------------------- /frosting/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/dllmain.cpp -------------------------------------------------------------------------------- /frosting/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/framework.h -------------------------------------------------------------------------------- /frosting/frosting.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/frosting.rc -------------------------------------------------------------------------------- /frosting/frosting.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/frosting.vcxproj -------------------------------------------------------------------------------- /frosting/frosting.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/frosting.vcxproj.filters -------------------------------------------------------------------------------- /frosting/int/def/ntdllex.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/int/def/ntdllex.def -------------------------------------------------------------------------------- /frosting/int/def/shell32ex.def: -------------------------------------------------------------------------------- 1 | LIBRARY shell32 2 | EXPORTS 3 | IsDesktopExplorerProcess 4 | -------------------------------------------------------------------------------- /frosting/int/def2lib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/int/def2lib.cmd -------------------------------------------------------------------------------- /frosting/int/include/ntdllex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/int/include/ntdllex.h -------------------------------------------------------------------------------- /frosting/int/include/shell32ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/int/include/shell32ex.h -------------------------------------------------------------------------------- /frosting/memfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/memfind.cpp -------------------------------------------------------------------------------- /frosting/memfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/memfind.h -------------------------------------------------------------------------------- /frosting/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/pch.cpp -------------------------------------------------------------------------------- /frosting/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/pch.h -------------------------------------------------------------------------------- /frosting/preferencefx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/preferencefx.cpp -------------------------------------------------------------------------------- /frosting/preferencefx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/preferencefx.h -------------------------------------------------------------------------------- /frosting/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebookisclosed/ShellFrosting/HEAD/frosting/resource.h --------------------------------------------------------------------------------