AlexanderPro / SmartSystemMenu

SmartSystemMenu extends system menu of all windows in the system
MIT License
1.84k stars 106 forks source link

Wasting RegisterWindowMessage #109

Closed sredna closed 1 year ago

sredna commented 1 year ago

RegisterWindowMessage is a shared global resource that you cannot free back to the system, they stick around for the lifetime of the session.

You are sending messages to a specific window so you don't even need RegisterWindowMessage, you can use messages in the WM_APP range.

AlexanderPro commented 1 year ago

Hi @sredna , Thank you. It works. Version 2.24.0.