diff options
author | George Hazan <ghazan@miranda.im> | 2017-03-24 18:44:27 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-03-24 18:44:27 +0300 |
commit | 6ce1301c80786203fcfc2fbc46bbfae73842b6ec (patch) | |
tree | 8f688d42bdd8946d7b115bc77979a8724b4bbbc1 /src | |
parent | 16488b948b0fe6e473de6afaa9038a766286f26c (diff) |
hmm... another not-so-very-useful service
Diffstat (limited to 'src')
-rw-r--r-- | src/core/stdmsg/src/msgs.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/core/stdmsg/src/msgs.cpp b/src/core/stdmsg/src/msgs.cpp index 214be6a766..79984e8a0b 100644 --- a/src/core/stdmsg/src/msgs.cpp +++ b/src/core/stdmsg/src/msgs.cpp @@ -477,14 +477,6 @@ static int PrebuildContactMenu(WPARAM hContact, LPARAM) return 0;
}
-static INT_PTR GetWindowClass(WPARAM wParam, LPARAM lParam)
-{
- char *szBuf = (char*)wParam;
- int size = (int)lParam;
- mir_snprintf(szBuf, size, SRMMMOD);
- return 0;
-}
-
static INT_PTR SetStatusText(WPARAM wParam, LPARAM lParam)
{
HWND hwnd = WindowList_Find(pci->hWindowList, wParam);
@@ -552,7 +544,6 @@ int LoadSendRecvMessageModule(void) CreateServiceFunction(MS_MSG_SENDMESSAGE, SendMessageCommand);
CreateServiceFunction(MS_MSG_SENDMESSAGEW, SendMessageCommand_W);
- CreateServiceFunction(MS_MSG_GETWINDOWCLASS, GetWindowClass);
CreateServiceFunction(MS_MSG_GETWINDOWDATA, GetWindowData);
CreateServiceFunction(MS_MSG_SETSTATUSTEXT, SetStatusText);
CreateServiceFunction("SRMsg/ReadMessage", ReadMessageCommand);
|