diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-05 15:27:21 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-05 15:27:26 +0300 |
commit | 63ed39f2286560d410b97b6b6ad75e9ed68cd30e (patch) | |
tree | b46a607dde8407e3cbb4356e80c89832e33127d6 /plugins/Popup/src/services.cpp | |
parent | d933dad982eaee4f82e9d31dade1beaf0d3cf50f (diff) |
Popup+ specific functionality localized inside Popup+
Diffstat (limited to 'plugins/Popup/src/services.cpp')
-rw-r--r-- | plugins/Popup/src/services.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/Popup/src/services.cpp b/plugins/Popup/src/services.cpp index 09cee21427..48a73fc864 100644 --- a/plugins/Popup/src/services.cpp +++ b/plugins/Popup/src/services.cpp @@ -304,12 +304,6 @@ static INT_PTR Popup_RegisterActions(WPARAM wParam, LPARAM lParam) return 0;
}
-static INT_PTR Popup_RegisterNotification(WPARAM wParam, LPARAM)
-{
- return (INT_PTR)RegisterNotification((POPUPNOTIFICATION*)wParam);
-}
-
-
/////////////////////////////////////////////////////////////////////////////////////////
// Popup/UnhookEventAsync
@@ -508,7 +502,6 @@ void CreateServices() CreateServiceFunction(MS_POPUP_SHOWMESSAGEW, Popup_ShowMessageW);
CreateServiceFunction(MS_POPUP_REGISTERACTIONS, Popup_RegisterActions);
- CreateServiceFunction(MS_POPUP_REGISTERNOTIFICATION, Popup_RegisterNotification);
CreateServiceFunction(MS_POPUP_UNHOOKEVENTASYNC, Popup_UnhookEventAsync);
|