Antoine Beauchamp

Results 85 comments of Antoine Beauchamp

Apologies for the late reply. That could be possible. A shell extension like ShellAnything is a plugin for Windows File Explore. File Explorer is providing a pre-build menu (`HMENU`) when...

Another problem is alignment based on previous menus from other shell extensions. A possible way to implement this could be by creating `after` or `before` attributes for `` elements. For...

In the logs we can observed the following: ``` I0701 11:57:58.265242 6896 shellext.cpp:300] System metrics: I0701 11:57:58.265242 6896 shellext.cpp:301] SM_CXSCREEN : 3840 I0701 11:57:58.265242 6896 shellext.cpp:302] SM_CYSCREEN : 2160 I0701...

ShellAnything uses the `ExtractIconEx()` function to display the icon on menus. The same function is also used by the majority of other Shell Extensions. More testing of function `ExtractIconEx()` should...

Note to self: - [SHDefExtractIcon()](https://learn.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shdefextracticona) example by Raymond Chen on the oldnewthing blog: https://devblogs.microsoft.com/oldnewthing/20140501-00/?p=1103 - Use of the [SHGetImageList()](http://msdn.microsoft.com/en-us/library/bb762185%28VS.85%29.aspx) function in order to get the list of all resolutions of...

I think I am experiencing the same issue but on a Huawei P20 Pro phone. Using latest version available from Google Play Store as of today (_Jellyfin Android 2.5.3_). There...

* https://stackoverflow.com/questions/72118332/how-to-write-a-shell-extension-in-c-for-new-windows-11-context-menus * https://devblogs.microsoft.com/oldnewthing/20100312-01/?p=14623 * https://github.com/microsoft/Windows-classic-samples/tree/main/Samples/Win7Samples/winui/shell/shellextensibility/explorerdataprovider * https://github.com/chrdavis/PIFShellExtensions/tree/master/PIFShellExtensionsLib * https://github.com/TortoiseGit/TortoiseGit/blob/REL_2.14.0.0_EXTERNAL/src/TortoiseShell/ContextMenu.cpp * https://github.com/WinMerge/winmerge/tree/v2.16.26/ShellExtension/ShellExtension * https://github.com/stax76/OpenWithPlusPlus/blob/master/OpenWithPPShellExtension/DLL.cpp

From https://learn.microsoft.com/en-us/previous-versions/windows/desktop/legacy/cc144064(v=vs.85)?redirectedfrom=MSDN : > The Shell automatically unloads any DLL when its usage count is zero, but only after the DLL has not been used for a period of time....

From https://www.tenforums.com/performance-maintenance/163171-unload-dll-ram-memory-tweak-question.html : > This is one of those useless tweaks that has been around since at least XP days. It has largely disappeared but can still be found. At...