diff options
author | George Hazan <george.hazan@gmail.com> | 2024-06-04 14:26:34 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-06-04 14:26:34 +0300 |
commit | 418ed48b7f8e5da569e32517b884a3d9fbda027f (patch) | |
tree | 8f45844c28ee14d66b396deb9ab1d74bc534a94a /plugins/VoiceService/src | |
parent | b40632168fe3558af545d3559d6982cc18fed968 (diff) |
code cleaning
Diffstat (limited to 'plugins/VoiceService/src')
-rw-r--r-- | plugins/VoiceService/src/hooks.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/plugins/VoiceService/src/hooks.cpp b/plugins/VoiceService/src/hooks.cpp index c5f1c1982f..9434ccc1d1 100644 --- a/plugins/VoiceService/src/hooks.cpp +++ b/plugins/VoiceService/src/hooks.cpp @@ -63,14 +63,6 @@ static HGENMENU hCMHold = NULL; OBJLIST<VoiceProvider> modules(1, PtrKeySortT); OBJLIST<VoiceCall> calls(1, PtrKeySortT); -static INT_PTR CListDblClick(WPARAM wParam, LPARAM lParam); - -static INT_PTR Service_CanCall(WPARAM wParam, LPARAM lParam); -static INT_PTR Service_Call(WPARAM wParam, LPARAM lParam); -static INT_PTR CMAnswer(WPARAM wParam, LPARAM lParam); -static INT_PTR CMHold(WPARAM wParam, LPARAM lParam); -static INT_PTR CMDrop(WPARAM wParam, LPARAM lParam); - class CallingMethod { public: @@ -179,7 +171,6 @@ static void AddAccount(PROTOACCOUNT *acc) return; int flags = CallProtoService(acc->szModuleName, PS_VOICE_CAPS, 0, 0); - if ((flags & VOICE_CAPS_VOICE) == 0) return; |